diff --git a/src/Peering/Peering.Test/Peering.Test.csproj b/src/Peering/Peering.Test/Peering.Test.csproj index 7e3eb4899ef9..a8fd0a65807c 100644 --- a/src/Peering/Peering.Test/Peering.Test.csproj +++ b/src/Peering/Peering.Test/Peering.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Peering/Peering.Test/ScenarioTests/ConvertLegacyTests.ps1 b/src/Peering/Peering.Test/ScenarioTests/ConvertLegacyTests.ps1 index 65fbabc14d91..d44862d97da0 100644 --- a/src/Peering/Peering.Test/ScenarioTests/ConvertLegacyTests.ps1 +++ b/src/Peering/Peering.Test/ScenarioTests/ConvertLegacyTests.ps1 @@ -18,8 +18,8 @@ GetLocationKindExchange function Test-ConvertLegacyKindExchangeAshburn { try { #must be hard coded asn because they have legacy items. - $peerAsn = makePeerAsn 42; - $name = getPeeringVariable "Name" "AS42_Ashburn_Exchange" + $peerAsn = makePeerAsn 1828; + $name = getPeeringVariable "Name" "AS1828_Ashburn_Exchange" $rg = getPeeringVariable "ResourceGroupName" "Building40" $legacy = Get-AzLegacyPeering -Kind Exchange -PeeringLocation Ashburn Assert-NotNull $peerAsn.Id @@ -42,15 +42,15 @@ Convert Legacy Kind Exchange Amsterdam With New Connection function Test-ConvertLegacyKindExchangeAmsterdamWithNewConnection { try { #must be hard coded asn because they have legacy items. - $peerAsn = makePeerAsn 42 - $name = getPeeringVariable "Name" "AS42_Amsterdam_Exchange" + $peerAsn = makePeerAsn 559 + $name = getPeeringVariable "Name" "AS559_Amsterdam_Exchange" $rg = getPeeringVariable "ResourceGroupName" "Building40" $legacy = Get-AzLegacyPeering -Kind Exchange -PeeringLocation Amsterdam Assert-NotNull $legacy Assert-True { $legacy.Count -ge 1 } #has to be hard coded becuase this ip address isnt used. #testing trim - $ipaddress = getPeeringVariable "ipaddress" " 80.249.211.62 " + $ipaddress = getPeeringVariable "ipaddress" " 80.249.208.37 " $facilityId = 26 $maxv4 = maxAdvertisedIpv4 $connection = New-AzPeeringExchangeConnectionObject -PeeringDbFacilityId $facilityId -MaxPrefixesAdvertisedIPv4 $maxv4 -PeerSessionIPv4Address $ipaddress diff --git a/src/Peering/Peering.Test/ScenarioTests/CreateNewDirectConnectionTests.ps1 b/src/Peering/Peering.Test/ScenarioTests/CreateNewDirectConnectionTests.ps1 index f042bf2f6cc2..1bc7b28bc4f1 100644 --- a/src/Peering/Peering.Test/ScenarioTests/CreateNewDirectConnectionTests.ps1 +++ b/src/Peering/Peering.Test/ScenarioTests/CreateNewDirectConnectionTests.ps1 @@ -38,7 +38,7 @@ function Test-NewDirectConnectionWithV4V6 { $createdConnection = New-AzPeeringDirectConnectionObject -PeeringDbFacilityId $facilityId -SessionPrefixV4 $sessionv4 -SessionPrefixV6 $sessionv6 -MaxPrefixesAdvertisedIPv4 $maxv4 -MaxPrefixesAdvertisedIPv6 $maxv6 -BandwidthInMbps $bandwidth -MD5AuthenticationKey $md5 Assert-AreEqual $md5 $createdConnection.BgpSession.Md5AuthenticationKey Assert-AreEqual $bandwidth $createdConnection.BandwidthInMbps - Assert-AreEqual $facilityId $createdConnection.PeeringDBFacilityId + Assert-AreEqual $facilityId $createdConnection.PeeringDBFacilityId Assert-AreEqual $sessionv4 $createdConnection.BgpSession.SessionPrefixV4 Assert-AreEqual $sessionv6 $createdConnection.BgpSession.SessionPrefixV6 Assert-AreEqual $false $createdConnection.UseForPeeringService @@ -152,7 +152,7 @@ function Test-NewDirectConnectionNoSession { } <# .SYNOPSIS -NewDirectConnectionWithV6 should fail with high BandwidthInMbps message +NewDirectConnectionWithV6 should allow high BandwidthInMbps and pass #> function Test-NewDirectConnectionHighBandwidth { $asn = makePeerAsn (getRandomNumber) @@ -162,23 +162,26 @@ function Test-NewDirectConnectionHighBandwidth { $peeringLocation = getPeeringLocation $kind $loc; $facilityId = $peeringLocation[0].PeeringDBFacilityId #Create some data for the object - #Set up the wrong BandwidthInMbps + #Set up the BandwidthInMbps in multiples of 100G $bandwidth = getBandwidth - #Anything over 100000 will fail. + #Multiples of 100000 should pass. $bandwidth = [int]$bandwidth * 10 Write-Debug "Creating Connection at $facilityId" $md5 = getHash $md5 = $md5.ToString() Write-Debug "Created Hash $md5" $sessionv4 = newIpV4Address $true $true 0 0 - $sessionv6 = newIpV6Address $true $true 0 0 - Write-Debug "Created IPs $sessionv4 $SessionPrefixV6" + Write-Debug "Created IPs $sessionv4" $maxv4 = maxAdvertisedIpv4 - $maxv6 = maxAdvertisedIpv6 - Write-Debug "Created maxAdvertised $maxv4 $maxv6" + Write-Debug "Created maxAdvertised $maxv4" #create Connection - Assert-ThrowsContains { New-AzPeeringDirectConnectionObject -PeeringDbFacilityId $facilityId -SessionPrefixV6 $sessionv6 -MaxPrefixesAdvertisedIPv6 $maxv6 -BandwidthInMbps $bandwidth -MD5AuthenticationKey $md5 } "The $bandwidth argument is greater than the maximum allowed range of 100000" - + $createdConnection = New-AzPeeringDirectConnectionObject -PeeringDbFacilityId $facilityId -SessionPrefixV4 $sessionv4 -MaxPrefixesAdvertisedIPv4 $maxv4 -BandwidthInMbps $bandwidth -MD5AuthenticationKey $md5 + Assert-AreEqual $md5 $createdConnection.BgpSession.Md5AuthenticationKey + Assert-AreEqual $bandwidth $createdConnection.BandwidthInMbps + Assert-AreEqual $facilityId $createdConnection.PeeringDBFacilityId + Assert-AreEqual $sessionv4 $createdConnection.BgpSession.SessionPrefixV4 + Assert-AreEqual $false $createdConnection.UseForPeeringService + Assert-AreEqual "Peer" $createdConnection.SessionAddressProvider removePeerAsn $asn } diff --git a/src/Peering/Peering.Test/ScenarioTests/CreateNewDirectPeeringTests.ps1 b/src/Peering/Peering.Test/ScenarioTests/CreateNewDirectPeeringTests.ps1 index d2d03cd98fa0..8568a15e217d 100644 --- a/src/Peering/Peering.Test/ScenarioTests/CreateNewDirectPeeringTests.ps1 +++ b/src/Peering/Peering.Test/ScenarioTests/CreateNewDirectPeeringTests.ps1 @@ -32,7 +32,7 @@ function Test-NewDirectPeering Write-Debug "Random Number $randNum"; $peerAsn = makePeerAsn $randNum $asn = Get-AzPeerAsn -Name $peerAsn.Name - $facilityId = $peeringLocation[0].PeeringDBFacilityId + $facilityId = 104 #create Connection $bandwidth = getBandwidth $directConnection = NewDirectConnectionV4V6 $facilityId $bandwidth @@ -203,7 +203,7 @@ function Test-NewDirectPeeringPremiumDirectUnlimited $resourceName = getAssetName "DirectOneConnection"; Write-Debug "Setting $resourceName" $peeringLocation = getPeeringLocation $kind $loc; - $facilityId = $peeringLocation[0].PeeringDBFacilityId + $facilityId = 1236 #create Connection $bandwidth = getBandwidth $bandwidth2 = getBandwidth diff --git a/src/Peering/Peering.Test/ScenarioTests/CreateNewExchangePeeringTests.ps1 b/src/Peering/Peering.Test/ScenarioTests/CreateNewExchangePeeringTests.ps1 index 71d4b74b9d1d..df13d163d137 100644 --- a/src/Peering/Peering.Test/ScenarioTests/CreateNewExchangePeeringTests.ps1 +++ b/src/Peering/Peering.Test/ScenarioTests/CreateNewExchangePeeringTests.ps1 @@ -20,7 +20,7 @@ function Test-NewExchangePeering() #Hard Coded locations becuase of limitations in locations $resourceName = getAssetName "NewExchangePeeringCVS" $resourceGroup = "testCarrier" - $peeringLocation = "Seattle" + $peeringLocation = "Ashburn" $kind = IsDirect $false Write-Debug "Getting the Facility Information" try { diff --git a/src/Peering/Peering.Test/ScenarioTests/GetCdnPeeringPrefixTests.cs b/src/Peering/Peering.Test/ScenarioTests/GetCdnPeeringPrefixTests.cs new file mode 100644 index 000000000000..1f4fa6bebecf --- /dev/null +++ b/src/Peering/Peering.Test/ScenarioTests/GetCdnPeeringPrefixTests.cs @@ -0,0 +1,63 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Peering.Test.ScenarioTests +{ + using Microsoft.WindowsAzure.Commands.ScenarioTest; + + using Xunit; + + /// + /// The get cdn peering prefixes tests. + /// + public class GetCdnPeeringPrefixTests + { + /// + /// The logger. + /// + private ServiceManagement.Common.Models.XunitTracingInterceptor logger; + + /// + /// Initializes a new instance of the class. + /// + /// + /// The output. + /// + public GetCdnPeeringPrefixTests(Xunit.Abstractions.ITestOutputHelper output) + { + this.logger = new ServiceManagement.Common.Models.XunitTracingInterceptor(output); + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(this.logger); + } + + /// + /// The test Get Cdn Peering Prefix For Location. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetCdnPeeringPrefixForLocation() + { + TestController.NewInstance.RunPowerShellTest(this.logger, "Test-GetCdnPeeringPrefixForLocation"); + } + + /// + /// The test Get Cdn Peering Prefix NonExistent Location. + /// + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetCdnPeeringPrefixNonExistentLocation() + { + TestController.NewInstance.RunPowerShellTest(this.logger, "Test-GetCdnPeeringPrefixNonExistentLocation"); + } + } +} diff --git a/src/Peering/Peering.Test/ScenarioTests/GetCdnPeeringPrefixTests.ps1 b/src/Peering/Peering.Test/ScenarioTests/GetCdnPeeringPrefixTests.ps1 new file mode 100644 index 000000000000..bbb47b92c37e --- /dev/null +++ b/src/Peering/Peering.Test/ScenarioTests/GetCdnPeeringPrefixTests.ps1 @@ -0,0 +1,30 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +<# +.SYNOPSIS +GetCdnPeeringPrefixForLocation +#> +function Test-GetCdnPeeringPrefixForLocation { + $cdnPeeringPrefix = Get-AzPeeringCdnPeeringPrefix -PeeringLocation "Seattle" + Assert-NotNull $cdnPeeringPrefix + Assert-True { $cdnPeeringPrefix.Count -eq 4 } +} +<# +.SYNOPSIS +GetCdnPeeringPrefixNonExistentLocation +#> +function Test-GetCdnPeeringPrefixNonExistentLocation { + $cdnPeeringPrefix = Get-AzPeeringCdnPeeringPrefix -PeeringLocation 'abcde' + Assert-Null $cdnPeeringPrefix +} \ No newline at end of file diff --git a/src/Peering/Peering.Test/ScenarioTests/GetLocationTests.ps1 b/src/Peering/Peering.Test/ScenarioTests/GetLocationTests.ps1 index 9d6d06ae9da6..f72247da2b58 100644 --- a/src/Peering/Peering.Test/ScenarioTests/GetLocationTests.ps1 +++ b/src/Peering/Peering.Test/ScenarioTests/GetLocationTests.ps1 @@ -53,7 +53,7 @@ function Test-GetLocationKindExchangeSeattle { $asnPeerName = makePeerAsn $asn $location = Get-AzPeeringLocation -Kind Exchange -PeeringLocation seattle Assert-NotNull $location - Assert-AreEqual 5 $location.Count + Assert-AreEqual 4 $location.Count } finally { Remove-AzPeerAsn -Name $asnPeerName -Force diff --git a/src/Peering/Peering.Test/ScenarioTests/PeeringServiceTests.ps1 b/src/Peering/Peering.Test/ScenarioTests/PeeringServiceTests.ps1 index 9c200ef4eb69..0fd3735d9d35 100644 --- a/src/Peering/Peering.Test/ScenarioTests/PeeringServiceTests.ps1 +++ b/src/Peering/Peering.Test/ScenarioTests/PeeringServiceTests.ps1 @@ -50,8 +50,8 @@ GetPeeringServiceProviders function Test-GetPeeringServiceByResourceGroup { #Hard Coded locations becuase of limitations in locations $name = getAssetName "myPeeringService"; - $loc = "Washington" - $provider = "Verizon Communications Inc." + $loc = "Ile-de-France" + $provider = "InterCloud" $resourceGroup = "Building40" $peeringService = New-AzPeeringService -ResourceGroupName $resourceGroup -Name $name -PeeringLocation $loc -PeeringServiceProvider $provider Assert-NotNull $peeringService @@ -72,8 +72,8 @@ GetPeeringServiceLocations function Test-GetPeeringServiceByResourceId { #Hard Coded locations becuase of limitations in locations $name = getAssetName "myPeeringService"; - $loc = "Washington" - $provider = "Verizon Communications Inc." + $loc = "Ile-de-France" + $provider = "InterCloud" $resourceGroup = "Building40" $peeringService = New-AzPeeringService -ResourceGroupName $resourceGroup -Name $name -PeeringLocation $loc -PeeringServiceProvider $provider Assert-NotNull $peeringService @@ -103,8 +103,8 @@ GetPeeringServiceLocations function Test-NewPeeringService { #Hard Coded locations becuase of limitations in locations $name = getAssetName "myPeeringService"; - $loc = "Washington" - $provider = "Verizon Communications Inc." + $loc = "Ile-de-France" + $provider = "InterCloud" $resourceGroup = "Building40" $peeringService = New-AzPeeringService -ResourceGroupName $resourceGroup -Name $name -PeeringLocation $loc -PeeringServiceProvider $provider Assert-NotNull $peeringService @@ -121,8 +121,8 @@ function Test-NewPeeringServicePrefix { #Hard Coded locations becuase of limitations in locations $name = getAssetName "myPeeringService"; $prefixName = getAssetName "myPrefix"; - $loc = "Washington" - $provider = "Verizon Communications Inc." + $loc = "Ile-de-France" + $provider = "InterCloud" $resourceGroup = "Building40" $prefix = newIpV4Address $true $true 0 4 $peeringService = New-AzPeeringService -ResourceGroupName $resourceGroup -Name $name -PeeringLocation $loc -PeeringServiceProvider $provider diff --git a/src/Peering/Peering.Test/ScenarioTests/SetPeeringTests.ps1 b/src/Peering/Peering.Test/ScenarioTests/SetPeeringTests.ps1 index 388e08c1c174..11a2200b80bb 100644 --- a/src/Peering/Peering.Test/ScenarioTests/SetPeeringTests.ps1 +++ b/src/Peering/Peering.Test/ScenarioTests/SetPeeringTests.ps1 @@ -24,7 +24,7 @@ function Test-SetNewIP { $peering = CreateExchangePeering $resourceGroup $peerAsn.Name $peer = Get-AzPeering -ResourceId $peering.Id $peerIpAddress = $peer.Connections[0].BgpSession.PeerSessionIPv4Address - $offset = getPeeringVariable "offSet" (Get-Random -Maximum 100 -Minimum 1 | % { $_ * 2 } ) + $offset = getPeeringVariable "offSet" (Get-Random -Maximum 10 -Minimum 1 | % { $_ * 2 } ) $newIpAddress = getPeeringVariable "newIpAddress" (changeIp "$peerIpAddress/32" $false $offset $false ) $peer.Connections[0] = $peer.Connections[0] | Set-AzPeeringExchangeConnectionObject -PeerSessionIPv4Address $newIpAddress Assert-ThrowsContains { $peer | Update-AzPeering } "OperationNotSupported" diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ConvertLegacyTests/TestConvertLegacyKindExchangeAmsterdamWithNewConnection.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ConvertLegacyTests/TestConvertLegacyKindExchangeAmsterdamWithNewConnection.json index e2a66a06fe83..915d62dbeab7 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ConvertLegacyTests/TestConvertLegacyKindExchangeAmsterdamWithNewConnection.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ConvertLegacyTests/TestConvertLegacyKindExchangeAmsterdamWithNewConnection.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9600?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Mi1HbG9iYWw5NjAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/559-Global9245?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NTktR2xvYmFsOTI0NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 42,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS42-Global6629.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS42-Global6629.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS42-Global6629\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 559,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS559-Global5445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS559-Global5445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS559-Global5445\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "86763cc9-126f-4ed5-add3-65550e44ea04" + "9a401d86-0e43-4048-b999-fa846f5a9dd2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "374" + "378" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "495f93e1-bba4-4c0f-a992-d21d8c2517c7" + "ae17e636-c901-4b51-a5c0-2a0cc78d43f7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "53a6eb9f-e1a5-4179-9b23-0d1b2ecec0e9" + "efd7b7b4-b3ea-4b08-a8d0-e19b23d9baed" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232246Z:53a6eb9f-e1a5-4179-9b23-0d1b2ecec0e9" + "NORTHEUROPE:20210409T092210Z:efd7b7b4-b3ea-4b08-a8d0-e19b23d9baed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:45 GMT" + "Fri, 09 Apr 2021 09:22:10 GMT" ], "Content-Length": [ - "593" + "600" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 42,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS42-Global6629.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS42-Global6629.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS42-Global6629\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"42-Global9600\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9600\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 559,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS559-Global5445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS559-Global5445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS559-Global5445\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"559-Global9245\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/559-Global9245\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9600?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Mi1HbG9iYWw5NjAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/559-Global9245?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NTktR2xvYmFsOTI0NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 42,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS42-Global6629.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS42-Global6629.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS42-Global6629\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 559,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS559-Global5445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS559-Global5445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS559-Global5445\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ffd8edb-7d3a-4dfa-98c0-b727d4a85f12" + "a0d13e0d-301e-4cd3-82d0-5e37eb972a40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "410" + "414" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "aa8830a0-b01a-41a8-907d-2dcb698ab36e" + "8f1927df-818d-45d7-b825-2cf5b98b2a79" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "56" + "58" ], "x-ms-correlation-request-id": [ - "69172404-5cc3-4196-b71b-09c507746bbb" + "519198b9-0128-4cca-aa19-807c4a4164c7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232247Z:69172404-5cc3-4196-b71b-09c507746bbb" + "NORTHEUROPE:20210409T092212Z:519198b9-0128-4cca-aa19-807c4a4164c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:46 GMT" + "Fri, 09 Apr 2021 09:22:11 GMT" ], "Content-Length": [ - "594" + "600" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 42,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS42-Global6629.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS42-Global6629.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS42-Global6629\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"42-Global9600\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9600\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 559,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS559-Global5445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS559-Global5445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS559-Global5445\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"559-Global9245\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/559-Global9245\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/legacyPeerings?peeringLocation=Amsterdam&kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9sZWdhY3lQZWVyaW5ncz9wZWVyaW5nTG9jYXRpb249QW1zdGVyZGFtJmtpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/legacyPeerings?peeringLocation=Amsterdam&kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9sZWdhY3lQZWVyaW5ncz9wZWVyaW5nTG9jYXRpb249QW1zdGVyZGFtJmtpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afe89a1d-b279-4361-b8cf-c07261dc16b6" + "9c7f1494-4654-46e1-abfa-f6545769a381" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "5be10967-5230-4599-aff6-9c14c21d07f0" + "621e485d-8109-4738-b9b4-ddfb4df6b948" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "1612756e-0369-4978-858c-95a602fbbdd5" + "018cd0fe-2e03-4615-912f-d26aff1cefe4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232250Z:1612756e-0369-4978-858c-95a602fbbdd5" + "NORTHEUROPE:20210409T092214Z:018cd0fe-2e03-4615-912f-d26aff1cefe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:49 GMT" + "Fri, 09 Apr 2021 09:22:14 GMT" ], "Content-Length": [ - "2938" + "3224" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv4Address\": \"193.239.116.123\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4b63132f-1004-4924-bed9-97be6787cde3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b3dc9103-75e1-4e32-94a4-494a84b8c302\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d3cd63b0-bd75-472c-a346-71e40855e642\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"42\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.208.33\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8c647f60-cb46-4639-b787-56138c9aa959\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:559:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"6d0a8671-3256-40c0-a0d9-3cd81799c145\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.208.33\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0ee57bb5-064a-48d8-94cc-1fea053ce702\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:559:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4c8a907-be8f-4802-b4ca-45cc5b669652\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"559\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"West Europe\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7233bba8-4b16-4a03-a0a4-7032855d023e" + "a3ed5a1c-6174-4fc3-8e67-9344d3a534ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "d980c372-7eaa-4653-9e49-cd603a2db02a" + "a44863d3-f8b4-4622-9129-c22c0b1e34b4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "14ad6881-0800-4a4b-84b5-795daee87ac5" + "fd34655b-f9ca-4f16-944f-90f0782747da" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232250Z:14ad6881-0800-4a4b-84b5-795daee87ac5" + "NORTHEUROPE:20210409T092215Z:fd34655b-f9ca-4f16-944f-90f0782747da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:49 GMT" + "Fri, 09 Apr 2021 09:22:14 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,32 +249,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Amsterdam_Exchange?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTNDJfQW1zdGVyZGFtX0V4Y2hhbmdlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS559_Amsterdam_Exchange?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTNTU5X0Ftc3RlcmRhbV9FeGNoYW5nZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv4Address\": \"193.239.116.123\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:42:1\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4b63132f-1004-4924-bed9-97be6787cde3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b3dc9103-75e1-4e32-94a4-494a84b8c302\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d3cd63b0-bd75-472c-a346-71e40855e642\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9600\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.208.33\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8c647f60-cb46-4639-b787-56138c9aa959\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:559:1\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"6d0a8671-3256-40c0-a0d9-3cd81799c145\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.208.33\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0ee57bb5-064a-48d8-94cc-1fea053ce702\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:559:1\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4c8a907-be8f-4802-b4ca-45cc5b669652\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/559-Global9245\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63bc6172-f36b-4e20-b39d-41677102d4ee" + "a3ed5a1c-6174-4fc3-8e67-9344d3a534ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2338" + "2450" ] }, "ResponseHeaders": { @@ -285,16 +285,16 @@ "no-cache" ], "x-ms-request-id": [ - "2bc15f03-0527-4596-967d-9f32dfee4b91" + "643ff6b3-f83a-428b-ab55-645cae731ba8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "4156a6fa-ce89-4b27-8c9a-82f82f293431" + "84653d99-0b12-4c30-b12d-65ffa0499121" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232253Z:4156a6fa-ce89-4b27-8c9a-82f82f293431" + "NORTHEUROPE:20210409T092219Z:84653d99-0b12-4c30-b12d-65ffa0499121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:52 GMT" + "Fri, 09 Apr 2021 09:22:18 GMT" ], "Content-Length": [ - "3054" + "3221" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,26 +315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv4Address\": \"193.239.116.123\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4b63132f-1004-4924-bed9-97be6787cde3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b3dc9103-75e1-4e32-94a4-494a84b8c302\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d3cd63b0-bd75-472c-a346-71e40855e642\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9600\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"e0511b86-b511-4c02-9a39-f57a51ea74ab\",\r\n \"name\": \"AS42_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.208.33\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8c647f60-cb46-4639-b787-56138c9aa959\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:559:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"6d0a8671-3256-40c0-a0d9-3cd81799c145\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.208.33\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0ee57bb5-064a-48d8-94cc-1fea053ce702\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:559:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4c8a907-be8f-4802-b4ca-45cc5b669652\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/559-Global9245\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS559_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS559_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9600?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Mi1HbG9iYWw5NjAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/559-Global9245?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NTktR2xvYmFsOTI0NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3206171-7f1e-4acd-a396-4d92e6912150" + "a19a6975-66d1-4b66-8d48-9ea30c27a991" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -345,16 +345,16 @@ "no-cache" ], "x-ms-request-id": [ - "2f9b66ae-fc12-4132-a482-5db7b9de89c0" + "d7c84817-9a66-4886-9a32-843f9bed11e8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "a6979071-b2f6-4ad6-b67b-bcd4624303ee" + "c949752c-d258-41c4-a071-2d77a6f28460" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232253Z:a6979071-b2f6-4ad6-b67b-bcd4624303ee" + "NORTHEUROPE:20210409T092220Z:c949752c-d258-41c4-a071-2d77a6f28460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:53 GMT" + "Fri, 09 Apr 2021 09:22:20 GMT" ], "Expires": [ "-1" @@ -378,15 +378,15 @@ ], "Names": { "Test-ConvertLegacyKindExchangeAmsterdamWithNewConnection": [ - "42-Global9600", - "AS42-Global6629" + "559-Global9245", + "AS559-Global5445" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Name": "AS42_Amsterdam_Exchange", + "Name": "AS559_Amsterdam_Exchange", "ResourceGroupName": "Building40", - "ipaddress": " 80.249.211.62 ", - "MaxPrefixV4": "17501" + "ipaddress": " 80.249.208.37 ", + "MaxPrefixV4": "1769" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ConvertLegacyTests/TestConvertLegacyKindExchangeAshburn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ConvertLegacyTests/TestConvertLegacyKindExchangeAshburn.json index 51431d80a996..0b7ad42df882 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ConvertLegacyTests/TestConvertLegacyKindExchangeAshburn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ConvertLegacyTests/TestConvertLegacyKindExchangeAshburn.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global5169?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Mi1HbG9iYWw1MTY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1828-Global8734?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xODI4LUdsb2JhbDg3MzQ/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 42,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS42-Global287.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS42-Global287.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS42-Global287\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 1828,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1828-Global1303.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1828-Global1303.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1828-Global1303\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d87b32f-8d10-4fc8-8aa0-4b84ad5168e4" + "6b628b1d-c44c-4ebd-b8ee-d88c767099a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "371" + "382" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "8abc2c43-f68d-4162-a893-fb5a4e9f271f" + "7b687fdb-9cf6-4df8-aefb-7a11b5fa494a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "5e35866c-cc69-4a1a-8ae4-6fab5a8399ab" + "c7a424a3-9cb4-4b9f-99fc-34f05a4a6206" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232212Z:5e35866c-cc69-4a1a-8ae4-6fab5a8399ab" + "NORTHEUROPE:20210409T091653Z:c7a424a3-9cb4-4b9f-99fc-34f05a4a6206" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:12 GMT" + "Fri, 09 Apr 2021 09:16:53 GMT" ], "Content-Length": [ - "590" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 42,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS42-Global287.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS42-Global287.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS42-Global287\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"42-Global5169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global5169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 1828,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1828-Global1303.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1828-Global1303.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1828-Global1303\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"1828-Global8734\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1828-Global8734\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global5169?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Mi1HbG9iYWw1MTY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1828-Global8734?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xODI4LUdsb2JhbDg3MzQ/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 42,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS42-Global287.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS42-Global287.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS42-Global287\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 1828,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1828-Global1303.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1828-Global1303.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1828-Global1303\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3010a533-2500-4f9f-a3b1-7510045d2839" + "62e676fc-bce0-423b-ac4a-8dacf5947c7f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "407" + "418" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "305b2959-a0cd-4146-a902-87a5cf3b9647" + "b747a729-8efe-4942-ab6c-7b03e5ba92c8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "54" ], "x-ms-correlation-request-id": [ - "a033579b-b150-4c26-be2c-b232065271fa" + "31f15fdd-bc29-4c68-981c-9130d62d016a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232214Z:a033579b-b150-4c26-be2c-b232065271fa" + "NORTHEUROPE:20210409T091655Z:31f15fdd-bc29-4c68-981c-9130d62d016a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:14 GMT" + "Fri, 09 Apr 2021 09:16:54 GMT" ], "Content-Length": [ - "591" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 42,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS42-Global287.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS42-Global287.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS42-Global287\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"42-Global5169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global5169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 1828,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1828-Global1303.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1828-Global1303.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1828-Global1303\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"1828-Global8734\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1828-Global8734\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/legacyPeerings?peeringLocation=Ashburn&kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9sZWdhY3lQZWVyaW5ncz9wZWVyaW5nTG9jYXRpb249QXNoYnVybiZraW5kPUV4Y2hhbmdlJmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/legacyPeerings?peeringLocation=Ashburn&kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9sZWdhY3lQZWVyaW5ncz9wZWVyaW5nTG9jYXRpb249QXNoYnVybiZraW5kPUV4Y2hhbmdlJmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0447243e-296b-450a-8fd1-18d4d62749b6" + "7a3b01db-129a-4ad5-96a9-506c5c3bba24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "f0c57e37-4b59-4d0d-a5a8-0794254d9a16" + "8d0ac81e-2b8c-48f2-adb9-ca3f0da3edfc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "4052b9d0-9ff0-43f4-8e9e-fe9ff040eab4" + "4a4df261-a2ac-4de8-b443-9f24f1a28dc5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232216Z:4052b9d0-9ff0-43f4-8e9e-fe9ff040eab4" + "NORTHEUROPE:20210409T091658Z:4a4df261-a2ac-4de8-b443-9f24f1a28dc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:16 GMT" + "Fri, 09 Apr 2021 09:16:57 GMT" ], "Content-Length": [ - "2104" + "1846" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8b94e205-48f4-49e4-abe6-ae680995aefe\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e71a7439-c65a-422a-beac-5cbc162c3c50\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"42\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.238.22\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"23d5214b-2a27-473d-9b8e-5f7d199e29f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.238.22\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8ea435ba-69cd-4103-98a4-fdbd079f6a1c\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"1828\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"East US\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2270153-2449-4cba-93dd-531827718836" + "0bbec4c1-1dff-4560-8cf7-bba5366053af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "07402265-a5db-46ed-a72b-bdafd13066ce" + "840200d0-26cb-483c-9d1b-6b5f06d0cb00" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "e555a113-7622-420a-9f4f-ce03d4d7978c" + "9a4460a0-4dbc-4563-a7ff-099c3050b38e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232217Z:e555a113-7622-420a-9f4f-ce03d4d7978c" + "NORTHEUROPE:20210409T091658Z:9a4460a0-4dbc-4563-a7ff-099c3050b38e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:16 GMT" + "Fri, 09 Apr 2021 09:16:58 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,32 +249,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTNDJfQXNoYnVybl9FeGNoYW5nZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS1828_Ashburn_Exchange?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTgyOF9Bc2hidXJuX0V4Y2hhbmdlP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8b94e205-48f4-49e4-abe6-ae680995aefe\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e71a7439-c65a-422a-beac-5cbc162c3c50\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global5169\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.238.22\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"23d5214b-2a27-473d-9b8e-5f7d199e29f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.238.22\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8ea435ba-69cd-4103-98a4-fdbd079f6a1c\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1828-Global8734\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4179c235-aba9-4492-a10f-1635b819ba61" + "0bbec4c1-1dff-4560-8cf7-bba5366053af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1738" + "1480" ] }, "ResponseHeaders": { @@ -285,16 +285,16 @@ "no-cache" ], "x-ms-request-id": [ - "bf659fc2-9fbb-49f4-bbc5-067803872258" + "6ec0d8b7-39c9-4f82-a09c-edd4292d50bd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "92a8da74-06b8-4c29-a1e0-6a4257444b20" + "82b59dab-66a0-4943-9a34-cf587935776c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232220Z:92a8da74-06b8-4c29-a1e0-6a4257444b20" + "NORTHEUROPE:20210409T091702Z:82b59dab-66a0-4943-9a34-cf587935776c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:19 GMT" + "Fri, 09 Apr 2021 09:17:01 GMT" ], "Content-Length": [ - "2318" + "1999" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,26 +315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8b94e205-48f4-49e4-abe6-ae680995aefe\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e71a7439-c65a-422a-beac-5cbc162c3c50\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global5169\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"eTag\": \"7fe0d114-9eb7-43ad-bf27-a7d7a11c2da6\",\r\n \"name\": \"AS42_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.238.22\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"23d5214b-2a27-473d-9b8e-5f7d199e29f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.238.22\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8ea435ba-69cd-4103-98a4-fdbd079f6a1c\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1828-Global8734\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS1828_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS1828_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTNDJfQXNoYnVybl9FeGNoYW5nZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS1828_Ashburn_Exchange?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTgyOF9Bc2hidXJuX0V4Y2hhbmdlP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd7275a5-b723-4f28-bdf5-e008f4b6ef25" + "02e8aa9d-73ad-405d-9388-731b8a11fd04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -345,16 +345,16 @@ "no-cache" ], "x-ms-request-id": [ - "1d232cff-e5ca-46c6-bd65-d23adbb14828" + "6ac55c3c-ad9f-4f80-845f-5f5207bade9f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "a97b14bf-4a0b-4e0f-98be-9cbee80c4ff2" + "c9d5e12a-61c3-4244-8ae6-350e2c30abc1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232220Z:a97b14bf-4a0b-4e0f-98be-9cbee80c4ff2" + "NORTHEUROPE:20210409T091702Z:c9d5e12a-61c3-4244-8ae6-350e2c30abc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:19 GMT" + "Fri, 09 Apr 2021 09:17:01 GMT" ], "Content-Length": [ - "2318" + "1999" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,26 +375,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8b94e205-48f4-49e4-abe6-ae680995aefe\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e71a7439-c65a-422a-beac-5cbc162c3c50\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global5169\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"eTag\": \"7fe0d114-9eb7-43ad-bf27-a7d7a11c2da6\",\r\n \"name\": \"AS42_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.238.22\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"23d5214b-2a27-473d-9b8e-5f7d199e29f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.238.22\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8ea435ba-69cd-4103-98a4-fdbd079f6a1c\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1828-Global8734\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS1828_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS1828_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global5169?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Mi1HbG9iYWw1MTY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1828-Global8734?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xODI4LUdsb2JhbDg3MzQ/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b5b7c2b-e993-408b-baaa-4340630b9ae7" + "80127109-f7f0-4775-b0ee-b701efa1afbc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -405,16 +405,16 @@ "no-cache" ], "x-ms-request-id": [ - "d45a08f8-cf74-4f7a-ba61-5a9ed8561549" + "ecc3e623-00ee-4be3-9bd8-e6c4787d2c8a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "182dc7ad-5bb0-4397-bd2d-2d066f61bd21" + "de318f04-d250-4a7b-a3a8-63cb03de9138" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T232221Z:182dc7ad-5bb0-4397-bd2d-2d066f61bd21" + "NORTHEUROPE:20210409T091703Z:de318f04-d250-4a7b-a3a8-63cb03de9138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,7 +423,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:22:21 GMT" + "Fri, 09 Apr 2021 09:17:03 GMT" ], "Expires": [ "-1" @@ -438,13 +438,13 @@ ], "Names": { "Test-ConvertLegacyKindExchangeAshburn": [ - "42-Global5169", - "AS42-Global287" + "1828-Global8734", + "AS1828-Global1303" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Name": "AS42_Ashburn_Exchange", + "Name": "AS1828_Ashburn_Exchange", "ResourceGroupName": "Building40" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionHighBandwidth.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionHighBandwidth.json index 26671a13a41c..f3f57f8095c4 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionHighBandwidth.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionHighBandwidth.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30153-Global1706?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMDE1My1HbG9iYWwxNzA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61006-Global5885?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MTAwNi1HbG9iYWw1ODg1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 30153,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30153-Global6206.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30153-Global6206.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30153-Global6206\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 61006,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61006-Global2264.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61006-Global2264.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61006-Global2264\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fd30dd3f-2d3a-41c0-b33e-629cd278d53c" + "79c9b896-8aa6-43d4-b422-81160c336470" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "f9fc4feb-87ec-4924-862b-413fed840151" + "223a48b8-f55d-4ebc-89d3-9aa6b3855049" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "55" + "59" ], "x-ms-correlation-request-id": [ - "eb701ee0-8997-4aa7-a734-88d56015ff4d" + "dddf911c-ab13-4f17-a7ce-e0a0ea73e74d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214731Z:eb701ee0-8997-4aa7-a734-88d56015ff4d" + "NORTHEUROPE:20210409T073119Z:dddf911c-ab13-4f17-a7ce-e0a0ea73e74d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:30 GMT" + "Fri, 09 Apr 2021 07:31:19 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 30153,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30153-Global6206.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30153-Global6206.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30153-Global6206\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"30153-Global1706\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30153-Global1706\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 61006,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61006-Global2264.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61006-Global2264.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61006-Global2264\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"61006-Global5885\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61006-Global5885\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30153-Global1706?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMDE1My1HbG9iYWwxNzA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61006-Global5885?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MTAwNi1HbG9iYWw1ODg1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 30153,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30153-Global6206.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30153-Global6206.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30153-Global6206\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 61006,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61006-Global2264.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61006-Global2264.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61006-Global2264\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "79b22f1c-6f4c-4c60-ba1e-ee843b1778c2" + "05236f15-0e71-4007-9ec3-bca8193c092b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "09da6cc1-8afb-4533-9a72-4cb5fc2d7d0d" + "c524fff6-a769-4331-ba46-f7f1fb9c4290" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "54" + "58" ], "x-ms-correlation-request-id": [ - "4af21afd-cf16-4c4e-b0b3-0b929bbea742" + "bb4480e0-63f2-451a-afc7-ccfed98c90ee" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214732Z:4af21afd-cf16-4c4e-b0b3-0b929bbea742" + "NORTHEUROPE:20210409T073121Z:bb4480e0-63f2-451a-afc7-ccfed98c90ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:32 GMT" + "Fri, 09 Apr 2021 07:31:20 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 30153,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30153-Global6206.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30153-Global6206.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30153-Global6206\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"30153-Global1706\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30153-Global1706\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 61006,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61006-Global2264.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61006-Global2264.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61006-Global2264\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"61006-Global5885\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61006-Global5885\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "160516ee-57ec-44d6-a0cb-7796e28038cd" + "d1c23b70-ca2a-445e-b7ac-6c97e2405f71" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "c5400a28-080e-4a5a-a655-ef564f23d4c8" + "73d64471-2ac1-4bf0-87ce-1023e18ba63a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "8d7ce82e-8f1a-4476-9a7f-c09dd1801eba" + "d48b5857-da24-412b-89f1-02c64f16cc1c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214734Z:8d7ce82e-8f1a-4476-9a7f-c09dd1801eba" + "NORTHEUROPE:20210409T073123Z:d48b5857-da24-412b-89f1-02c64f16cc1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:34 GMT" + "Fri, 09 Apr 2021 07:31:22 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30153-Global1706?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMDE1My1HbG9iYWwxNzA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61006-Global5885?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MTAwNi1HbG9iYWw1ODg1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd7c9665-db0e-4c51-b466-04088a24c5d4" + "68569fb3-1f4f-4e64-a092-94eb77c2b391" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "4c986c10-4c68-41bd-96ff-0dcc15f93963" + "06c5c1bf-b98a-4f89-abcf-1d47352b95cb" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "ea53e039-132f-4cc0-b4fc-121581fc6c17" + "813599ef-e539-4f76-b58e-6e9f4fab5d7e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214735Z:ea53e039-132f-4cc0-b4fc-121581fc6c17" + "NORTHEUROPE:20210409T073124Z:813599ef-e539-4f76-b58e-6e9f4fab5d7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:35 GMT" + "Fri, 09 Apr 2021 07:31:24 GMT" ], "Expires": [ "-1" @@ -252,15 +252,14 @@ ], "Names": { "Test-NewDirectConnectionHighBandwidth": [ - "30153-Global1706", - "AS30153-Global6206" + "61006-Global5885", + "AS61006-Global2264" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "30000", - "Hash": "b6d5cd89a6218ac02cc08fb51de32be6", - "MaxPrefixV4": "3134", - "MaxPrefixV6": "950" + "bandwidth": "80000", + "Hash": "d40a9c4c767e49eb62aac26ed7454be7", + "MaxPrefixV4": "1727" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionLowBandwidth.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionLowBandwidth.json index 4e79c2de1ae3..3c6e18d7abb3 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionLowBandwidth.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionLowBandwidth.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10541-Global8026?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMDU0MS1HbG9iYWw4MDI2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22425-Global5855?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjQyNS1HbG9iYWw1ODU1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 10541,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS10541-Global2356.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS10541-Global2356.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS10541-Global2356\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22425,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22425-Global5731.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22425-Global5731.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22425-Global5731\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "54b4e964-0ac6-47db-92c3-354930ad3b5e" + "5b00eb94-f6da-4f0c-973e-913fd2be0b7f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "c242e471-4689-4df5-97ce-b369c7c3f767" + "a2ea4f74-98f5-4021-98ad-ddf2fcd054f2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "7d3d9f15-5fe6-4728-967b-4286ca53637c" + "11a3b544-e854-4174-9a91-42108607b8e7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214703Z:7d3d9f15-5fe6-4728-967b-4286ca53637c" + "NORTHEUROPE:20210409T073032Z:11a3b544-e854-4174-9a91-42108607b8e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:03 GMT" + "Fri, 09 Apr 2021 07:30:32 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 10541,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS10541-Global2356.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS10541-Global2356.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS10541-Global2356\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"10541-Global8026\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10541-Global8026\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22425,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22425-Global5731.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22425-Global5731.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22425-Global5731\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"22425-Global5855\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22425-Global5855\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10541-Global8026?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMDU0MS1HbG9iYWw4MDI2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22425-Global5855?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjQyNS1HbG9iYWw1ODU1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 10541,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS10541-Global2356.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS10541-Global2356.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS10541-Global2356\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22425,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22425-Global5731.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22425-Global5731.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22425-Global5731\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "77152c17-224d-444f-8a45-d54cead76501" + "c125d6d8-188e-4247-98fc-171e6516f4e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "708acb3e-d8ff-4e5f-9c07-e0c335acb7f4" + "1ac32cc9-5a6e-4120-85c1-faf6e824c574" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "56" + "58" ], "x-ms-correlation-request-id": [ - "bbab4179-d362-4c79-8bea-fc407df7a1ae" + "d99cd175-92bf-41ca-9c29-c021ad6a648b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214704Z:bbab4179-d362-4c79-8bea-fc407df7a1ae" + "NORTHEUROPE:20210409T073033Z:d99cd175-92bf-41ca-9c29-c021ad6a648b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:04 GMT" + "Fri, 09 Apr 2021 07:30:33 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 10541,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS10541-Global2356.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS10541-Global2356.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS10541-Global2356\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"10541-Global8026\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10541-Global8026\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22425,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22425-Global5731.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22425-Global5731.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22425-Global5731\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"22425-Global5855\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22425-Global5855\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a17c1a2-fe32-4c38-b573-7ca48f8f9249" + "7ec536d6-16eb-41e3-8adc-3b099a083a08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "6b93668c-9b20-47f5-a0ca-03d650e1d808" + "8cb04523-a8f4-4104-9891-25b62e7178c4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "61844376-d34f-4734-b7a0-99d030292f87" + "d7763a0b-658c-494a-bee0-7d6bf2707905" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214707Z:61844376-d34f-4734-b7a0-99d030292f87" + "NORTHEUROPE:20210409T073036Z:d7763a0b-658c-494a-bee0-7d6bf2707905" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:07 GMT" + "Fri, 09 Apr 2021 07:30:35 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10541-Global8026?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMDU0MS1HbG9iYWw4MDI2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22425-Global5855?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjQyNS1HbG9iYWw1ODU1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc097a6f-b826-4368-a768-46241c39bc3b" + "96041195-c037-4baa-989b-15b60303a441" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "194ae994-fe2f-46a8-acc7-8d0c954f3e64" + "ac979bb8-6bc9-43f8-a43a-52aa09486eef" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "fa92e50e-b8e6-4abd-b1a3-9ff6bb56890c" + "62024878-c799-419a-ac61-47143dac0159" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214707Z:fa92e50e-b8e6-4abd-b1a3-9ff6bb56890c" + "NORTHEUROPE:20210409T073037Z:62024878-c799-419a-ac61-47143dac0159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:07 GMT" + "Fri, 09 Apr 2021 07:30:36 GMT" ], "Expires": [ "-1" @@ -252,14 +252,14 @@ ], "Names": { "Test-NewDirectConnectionLowBandwidth": [ - "10541-Global8026", - "AS10541-Global2356" + "22425-Global5855", + "AS22425-Global5731" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "ceaa6cad2a53f69dcb6f46d21e92566a", - "MaxPrefixV4": "9826", - "MaxPrefixV6": "1323" + "Hash": "0b828243a0e8d6fb41a68483b59127e2", + "MaxPrefixV4": "690", + "MaxPrefixV6": "1026" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionNoSession.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionNoSession.json index cf7dca560994..00d3f678c5b1 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionNoSession.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionNoSession.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47948-Global8759?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Nzk0OC1HbG9iYWw4NzU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2477-Global7651?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDc3LUdsb2JhbDc2NTE/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47948,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47948-Global90.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47948-Global90.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47948-Global90\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2477,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2477-Global3256.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2477-Global3256.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2477-Global3256\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e3a41dc8-0b12-4f95-bf1a-a96bd163e1c6" + "d17f569e-e9c0-43d0-a3c6-0a98db01d9aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "380" + "382" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "031dfb5d-cca1-433a-97d7-d0ac289ed7f8" + "9c6d2be9-776d-47ac-b6c4-71f1b23cb77e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "57" ], "x-ms-correlation-request-id": [ - "d8b3dfb5-3408-41be-97b0-c0879f0602c3" + "b4fe1991-845c-423a-a155-d7a0ab893766" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214759Z:d8b3dfb5-3408-41be-97b0-c0879f0602c3" + "NORTHEUROPE:20210409T073206Z:b4fe1991-845c-423a-a155-d7a0ab893766" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:47:59 GMT" + "Fri, 09 Apr 2021 07:32:05 GMT" ], "Content-Length": [ - "605" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47948,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47948-Global90.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47948-Global90.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47948-Global90\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"47948-Global8759\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47948-Global8759\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2477,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2477-Global3256.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2477-Global3256.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2477-Global3256\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"2477-Global7651\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2477-Global7651\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47948-Global8759?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Nzk0OC1HbG9iYWw4NzU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2477-Global7651?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDc3LUdsb2JhbDc2NTE/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47948,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47948-Global90.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47948-Global90.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47948-Global90\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2477,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2477-Global3256.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2477-Global3256.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2477-Global3256\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "51945835-9016-423d-932b-e419613a3b6f" + "cfc4c1eb-39e2-4eb0-b743-d92576a8e332" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "416" + "418" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "21b79624-f882-4586-87e8-57624a279f11" + "96ba22b9-a167-4b6e-9905-a6aadbc117eb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "56" ], "x-ms-correlation-request-id": [ - "d5c33670-f079-441c-9fcb-dc997d1a87b4" + "d0ff72d0-72cf-4d44-9aab-1330ec9af493" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214800Z:d5c33670-f079-441c-9fcb-dc997d1a87b4" + "NORTHEUROPE:20210409T073207Z:d0ff72d0-72cf-4d44-9aab-1330ec9af493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:00 GMT" + "Fri, 09 Apr 2021 07:32:07 GMT" ], "Content-Length": [ "606" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47948,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47948-Global90.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47948-Global90.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47948-Global90\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"47948-Global8759\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47948-Global8759\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2477,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2477-Global3256.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2477-Global3256.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2477-Global3256\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"2477-Global7651\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2477-Global7651\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a679be08-b93d-4f59-a802-bcd7d0b33250" + "c8b1b3d4-4eed-470d-9e1b-3baccfa9e5ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "e770fb32-e6cf-461d-a606-eef8c1e8d07c" + "b53a397b-33d1-42d8-8ae1-5d31b6c20318" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "523561d9-003e-463f-9d4b-de803766ad51" + "9f773027-043a-4690-8df9-075ef0f474fc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214803Z:523561d9-003e-463f-9d4b-de803766ad51" + "NORTHEUROPE:20210409T073210Z:9f773027-043a-4690-8df9-075ef0f474fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:03 GMT" + "Fri, 09 Apr 2021 07:32:09 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47948-Global8759?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Nzk0OC1HbG9iYWw4NzU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2477-Global7651?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDc3LUdsb2JhbDc2NTE/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "418c69ae-717e-4f87-8ecb-a01b3fb858e2" + "f7adcd38-05df-4e12-bea7-f333e909c19f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "ba59aa44-d789-4de8-b3b8-c886c2b7e6e3" + "9cc9a930-dc02-4f35-bc27-05ec0fef224a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "deb6e2a9-0ddd-4b49-aaca-ad7c057f386f" + "1fdb17a6-6705-49b4-9260-549405736496" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214804Z:deb6e2a9-0ddd-4b49-aaca-ad7c057f386f" + "NORTHEUROPE:20210409T073211Z:1fdb17a6-6705-49b4-9260-549405736496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:03 GMT" + "Fri, 09 Apr 2021 07:32:10 GMT" ], "Expires": [ "-1" @@ -252,15 +252,15 @@ ], "Names": { "Test-NewDirectConnectionNoSession": [ - "47948-Global8759", - "AS47948-Global90" + "2477-Global7651", + "AS2477-Global3256" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "90000", - "Hash": "642b8b79ea6da5ce834673479942b0c5", - "MaxPrefixV4": "17055", - "MaxPrefixV6": "205" + "bandwidth": "50000", + "Hash": "4b5ed50de355498613d7909e9a296baf", + "MaxPrefixV4": "5248", + "MaxPrefixV6": "516" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftIpProvidedAddress.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftIpProvidedAddress.json index a8ee50b3edda..0586fbeed0f9 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftIpProvidedAddress.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftIpProvidedAddress.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48413-Global3170?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80ODQxMy1HbG9iYWwzMTcwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28191-Global9023?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yODE5MS1HbG9iYWw5MDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 48413,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48413-Global9044.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48413-Global9044.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48413-Global9044\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28191,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28191-Global8902.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28191-Global8902.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28191-Global8902\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "91148b6d-5b07-4aea-a013-bb1d2ddb72de" + "6cdf2dcf-f9e4-4692-95d0-b712485cf045" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "aa769357-aaca-4d6f-851c-390c37950cf0" + "4317c270-eff8-4233-82bb-48544fa9e2d7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "08310b85-135d-48fb-96c4-c16cddf5bc2b" + "a2130477-a170-4342-b0cd-b6d899441b7d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214509Z:08310b85-135d-48fb-96c4-c16cddf5bc2b" + "NORTHEUROPE:20210409T072719Z:a2130477-a170-4342-b0cd-b6d899441b7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:45:09 GMT" + "Fri, 09 Apr 2021 07:27:19 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 48413,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48413-Global9044.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48413-Global9044.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48413-Global9044\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"48413-Global3170\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48413-Global3170\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28191,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28191-Global8902.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28191-Global8902.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28191-Global8902\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"28191-Global9023\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28191-Global9023\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48413-Global3170?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80ODQxMy1HbG9iYWwzMTcwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28191-Global9023?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yODE5MS1HbG9iYWw5MDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 48413,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48413-Global9044.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48413-Global9044.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48413-Global9044\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28191,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28191-Global8902.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28191-Global8902.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28191-Global8902\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07c8e20c-b8b9-40cf-a1e4-f8d4733b8a28" + "3aa9f89d-15df-4d09-8ad5-69dde4b023ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "75bf5351-b283-40d1-a0d1-f50a0b009fdb" + "f09f334e-41dd-46e9-97f7-10a815126156" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "765a6c81-6461-41a7-bbf0-4fa6fea86f68" + "586501ac-fddd-4ed4-b13b-a2beb4d12aae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214511Z:765a6c81-6461-41a7-bbf0-4fa6fea86f68" + "NORTHEUROPE:20210409T072721Z:586501ac-fddd-4ed4-b13b-a2beb4d12aae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:45:11 GMT" + "Fri, 09 Apr 2021 07:27:21 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 48413,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48413-Global9044.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48413-Global9044.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48413-Global9044\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"48413-Global3170\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48413-Global3170\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28191,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28191-Global8902.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28191-Global8902.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28191-Global8902\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"28191-Global9023\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28191-Global9023\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c7d7494-c05d-48b1-be52-c4532fb91d1c" + "d4ce3404-c103-4fdf-9744-43ecbf3a63b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "6db7e6e5-da54-47e8-b1fc-3057c7e360c1" + "60fb17df-ae06-48f4-960c-e6c2d79b3658" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "d981eb94-c517-4d77-85e0-c51efc396629" + "3dd567de-71d4-4c50-abcb-a4ae713b3ac0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214513Z:d981eb94-c517-4d77-85e0-c51efc396629" + "NORTHEUROPE:20210409T072724Z:3dd567de-71d4-4c50-abcb-a4ae713b3ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:45:13 GMT" + "Fri, 09 Apr 2021 07:27:23 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48413-Global3170?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80ODQxMy1HbG9iYWwzMTcwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28191-Global9023?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yODE5MS1HbG9iYWw5MDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc3c62c4-4eb2-402a-b152-e82f6a86f1bf" + "7eab5eb7-59f1-4caa-9112-cb7cdada00b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "027798c0-9e40-4b64-b890-4af5fdfd98ad" + "ce99ea36-cdf4-45da-993b-1e832f7c9536" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "fc4054aa-3e49-4ce9-b1b3-1b397d19805b" + "bce8ee26-28d9-43be-84d6-cf96ce06b055" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214514Z:fc4054aa-3e49-4ce9-b1b3-1b397d19805b" + "NORTHEUROPE:20210409T072725Z:bce8ee26-28d9-43be-84d6-cf96ce06b055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:45:13 GMT" + "Fri, 09 Apr 2021 07:27:24 GMT" ], "Expires": [ "-1" @@ -252,12 +252,12 @@ ], "Names": { "Test-NewDirectConnectionWithMicrosoftIpProvidedAddress": [ - "48413-Global3170", - "AS48413-Global9044" + "28191-Global9023", + "AS28191-Global8902" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "30000" + "bandwidth": "40000" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSession.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSession.json index 2630673eb789..3f271cc13da0 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSession.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSession.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58097-Global2368?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODA5Ny1HbG9iYWwyMzY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53403-Global4781?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MzQwMy1HbG9iYWw0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58097,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58097-Global2544.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58097-Global2544.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58097-Global2544\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 53403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS53403-Global5972.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS53403-Global5972.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS53403-Global5972\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "72cb97d8-4508-43fc-a9ef-1141fd100ee0" + "9bcd61dd-c1e4-4a07-89b7-37cd7ce7ada4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "e315d21d-1c9d-46d3-9245-608c477336a9" + "bc238448-aeb6-4cb7-8b66-ac8ab6df5c9b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "55" ], "x-ms-correlation-request-id": [ - "e922f3e2-dec5-44c5-acd5-1dda0a38b48d" + "fc59ccab-efd0-4131-a05d-fb8d8acb9664" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215119Z:e922f3e2-dec5-44c5-acd5-1dda0a38b48d" + "NORTHEUROPE:20210409T073739Z:fc59ccab-efd0-4131-a05d-fb8d8acb9664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:51:18 GMT" + "Fri, 09 Apr 2021 07:37:39 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58097,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58097-Global2544.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58097-Global2544.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58097-Global2544\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"58097-Global2368\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58097-Global2368\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 53403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS53403-Global5972.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS53403-Global5972.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS53403-Global5972\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"53403-Global4781\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53403-Global4781\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58097-Global2368?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODA5Ny1HbG9iYWwyMzY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53403-Global4781?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MzQwMy1HbG9iYWw0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58097,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58097-Global2544.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58097-Global2544.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58097-Global2544\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 53403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS53403-Global5972.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS53403-Global5972.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS53403-Global5972\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "951f5760-4a34-47a2-b09d-f74a67d708c2" + "98c913e6-a32c-4c45-bbda-c50bb65f9106" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "c2cdb0cc-7959-4133-a4e0-dcb3664929ed" + "17ca7586-0c67-40aa-b286-d2541f274f82" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "54" ], "x-ms-correlation-request-id": [ - "9175fb7b-b032-4fc8-bcf0-4a8f29b087aa" + "4cf60a0a-86e1-48d9-a399-fb73fe418d06" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215120Z:9175fb7b-b032-4fc8-bcf0-4a8f29b087aa" + "NORTHEUROPE:20210409T073741Z:4cf60a0a-86e1-48d9-a399-fb73fe418d06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:51:19 GMT" + "Fri, 09 Apr 2021 07:37:40 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58097,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58097-Global2544.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58097-Global2544.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58097-Global2544\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"58097-Global2368\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58097-Global2368\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 53403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS53403-Global5972.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS53403-Global5972.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS53403-Global5972\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"53403-Global4781\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53403-Global4781\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c982921e-fa0c-43fe-955a-0f874ad22eab" + "30744b94-ad8f-44c5-982c-c6ed80cb796b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "67500f95-3b58-414f-b015-c4b6d1a6624f" + "8cc5b808-d1e6-4e0d-9023-73e6293970c6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "56" ], "x-ms-correlation-request-id": [ - "6f19a823-006a-4b32-93f2-51ef943c05a4" + "6a437dab-37d2-4a86-895a-53537cfb688b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215123Z:6f19a823-006a-4b32-93f2-51ef943c05a4" + "NORTHEUROPE:20210409T073743Z:6a437dab-37d2-4a86-895a-53537cfb688b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:51:23 GMT" + "Fri, 09 Apr 2021 07:37:43 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58097-Global2368?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODA5Ny1HbG9iYWwyMzY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53403-Global4781?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MzQwMy1HbG9iYWw0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb3c211e-4444-4424-b658-082ce20c2973" + "033bcb56-400c-4c36-80ba-a2e8f99ad0f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "f17824ce-1bc1-45fb-963e-9e45bdea20de" + "81afdd27-3efa-472c-9c1c-ee5143430025" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "946c776f-fc60-436c-bfa7-fd5387de9587" + "9323e043-ba93-441a-861f-89373982eabd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215124Z:946c776f-fc60-436c-bfa7-fd5387de9587" + "NORTHEUROPE:20210409T073744Z:9323e043-ba93-441a-861f-89373982eabd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:51:23 GMT" + "Fri, 09 Apr 2021 07:37:44 GMT" ], "Expires": [ "-1" @@ -252,12 +252,12 @@ ], "Names": { "Test-NewDirectConnectionWithMicrosoftSession": [ - "58097-Global2368", - "AS58097-Global2544" + "53403-Global4781", + "AS53403-Global5972" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "30000" + "bandwidth": "40000" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionInvalidV4.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionInvalidV4.json index 2b91378d6c37..ca9410eb4209 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionInvalidV4.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionInvalidV4.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39029-Global9668?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTAyOS1HbG9iYWw5NjY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/802-Global1309?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy84MDItR2xvYmFsMTMwOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39029,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39029-Global384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39029-Global384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39029-Global384\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 802,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS802-Global9122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS802-Global9122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS802-Global9122\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ece5740a-6117-44c0-a784-2e257a8537c2" + "d525f6ed-da4a-4b39-a3c7-3b0f32daaf0d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "383" + "378" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "01343ca5-a0fa-4751-9842-f58b23bc8988" + "d9ee84da-0e2f-4bc3-b7ae-0060029555c7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "b6738ea5-32fa-4b31-b8b4-5d9c26fd02db" + "f03b62e4-c46c-4e2d-a82c-fe4294c1b42a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215148Z:b6738ea5-32fa-4b31-b8b4-5d9c26fd02db" + "NORTHEUROPE:20210409T073827Z:f03b62e4-c46c-4e2d-a82c-fe4294c1b42a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:51:48 GMT" + "Fri, 09 Apr 2021 07:38:27 GMT" ], "Content-Length": [ - "608" + "600" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39029,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39029-Global384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39029-Global384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39029-Global384\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"39029-Global9668\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39029-Global9668\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 802,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS802-Global9122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS802-Global9122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS802-Global9122\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"802-Global1309\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/802-Global1309\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39029-Global9668?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTAyOS1HbG9iYWw5NjY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/802-Global1309?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy84MDItR2xvYmFsMTMwOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39029,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39029-Global384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39029-Global384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39029-Global384\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 802,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS802-Global9122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS802-Global9122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS802-Global9122\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a8dce23d-254d-4e7a-8054-1af730624f07" + "442b752e-a82f-475e-94f1-2c57a07e8017" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "419" + "414" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "4c374fb6-21f7-4123-aa45-0ec9351fc254" + "64af440e-0bad-4cb1-870e-f061633be691" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "d601083a-e653-41c6-b9fd-e3f7a0533b78" + "c89f5758-3a96-45bf-b7dd-e09268b3f4a9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215149Z:d601083a-e653-41c6-b9fd-e3f7a0533b78" + "NORTHEUROPE:20210409T073828Z:c89f5758-3a96-45bf-b7dd-e09268b3f4a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:51:49 GMT" + "Fri, 09 Apr 2021 07:38:28 GMT" ], "Content-Length": [ - "609" + "600" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39029,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39029-Global384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39029-Global384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39029-Global384\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"39029-Global9668\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39029-Global9668\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 802,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS802-Global9122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS802-Global9122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS802-Global9122\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"802-Global1309\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/802-Global1309\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f4453d3-0f5c-427b-b690-ac4b4ca57117" + "a9c19628-c801-4776-8ba1-bd021653f920" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "907c514c-64d2-4d68-84cf-f028839fe04f" + "78e07112-bad1-44bc-9697-f22e1512da79" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "7e401615-c82f-47a3-889f-a5edf2644c81" + "c1b8ce09-b7e9-4443-8657-53e15cd5cffb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215152Z:7e401615-c82f-47a3-889f-a5edf2644c81" + "NORTHEUROPE:20210409T073831Z:c1b8ce09-b7e9-4443-8657-53e15cd5cffb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:51:52 GMT" + "Fri, 09 Apr 2021 07:38:31 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39029-Global9668?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTAyOS1HbG9iYWw5NjY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/802-Global1309?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy84MDItR2xvYmFsMTMwOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76756f7a-970e-4bd3-ba0e-baa38c1c6b9b" + "30423f23-8e7f-4662-a3a0-d1cdec353da7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "1765ce07-7161-401b-869f-c5b784441306" + "78fb5c6c-05ef-4dd9-aa6a-412ec1d9aef2" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "e488cf75-755a-47dd-9fa6-2b02532fcef3" + "f59c8391-e7af-443b-9946-b53c0cfeaa5d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215153Z:e488cf75-755a-47dd-9fa6-2b02532fcef3" + "NORTHEUROPE:20210409T073832Z:f59c8391-e7af-443b-9946-b53c0cfeaa5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:51:53 GMT" + "Fri, 09 Apr 2021 07:38:32 GMT" ], "Expires": [ "-1" @@ -252,12 +252,12 @@ ], "Names": { "Test-NewDirectConnectionWithMicrosoftSessionInvalidV4": [ - "39029-Global9668", - "AS39029-Global384" + "802-Global1309", + "AS802-Global9122" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "90000" + "bandwidth": "20000" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionInvalidV6.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionInvalidV6.json index b8cb7fe1490e..7c7c915430b6 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionInvalidV6.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionInvalidV6.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58956-Global3430?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODk1Ni1HbG9iYWwzNDMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6705-Global6072?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NzA1LUdsb2JhbDYwNzI/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58956,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58956-Global6050.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58956-Global6050.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58956-Global6050\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6705,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS6705-Global8039.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS6705-Global8039.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS6705-Global8039\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae853ccb-534b-48fb-b4e9-99fb7e79499c" + "5f2b7a6c-e495-4f09-8d80-984f9a62f618" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "382" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "3158d93b-2f1d-4680-990b-218d95a51559" + "ccf626b9-89bc-4d3f-9386-e7bfc8adad44" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "57" ], "x-ms-correlation-request-id": [ - "6b3a94fc-0bf3-44dd-9c9f-c0dab5d87c2a" + "d36d3db5-f98c-417b-8b9c-913a4c8ec8ad" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214923Z:6b3a94fc-0bf3-44dd-9c9f-c0dab5d87c2a" + "NORTHEUROPE:20210409T073429Z:d36d3db5-f98c-417b-8b9c-913a4c8ec8ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:23 GMT" + "Fri, 09 Apr 2021 07:34:28 GMT" ], "Content-Length": [ - "611" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58956,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58956-Global6050.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58956-Global6050.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58956-Global6050\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"58956-Global3430\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58956-Global3430\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6705,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS6705-Global8039.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS6705-Global8039.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS6705-Global8039\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"6705-Global6072\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6705-Global6072\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58956-Global3430?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODk1Ni1HbG9iYWwzNDMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6705-Global6072?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NzA1LUdsb2JhbDYwNzI/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58956,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58956-Global6050.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58956-Global6050.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58956-Global6050\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6705,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS6705-Global8039.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS6705-Global8039.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS6705-Global8039\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8c4c437e-bddd-457a-8b05-9eea6d0d1781" + "6c08ae10-ce0e-4108-ba43-95169629ddf1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "418" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "ba2d8332-3f21-4aa9-80c2-68bb3afbabfb" + "ab24474a-65a6-4711-bd0b-895b470cfbae" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "56" ], "x-ms-correlation-request-id": [ - "1c2cf997-c8bb-46c0-9d18-20d32eb56162" + "e61c737f-9b2f-47d6-910a-17b69cdd4cd3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214925Z:1c2cf997-c8bb-46c0-9d18-20d32eb56162" + "NORTHEUROPE:20210409T073431Z:e61c737f-9b2f-47d6-910a-17b69cdd4cd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:25 GMT" + "Fri, 09 Apr 2021 07:34:31 GMT" ], "Content-Length": [ - "612" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58956,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58956-Global6050.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58956-Global6050.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58956-Global6050\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"58956-Global3430\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58956-Global3430\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6705,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS6705-Global8039.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS6705-Global8039.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS6705-Global8039\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"6705-Global6072\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6705-Global6072\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4b36b8c-6f84-47dd-b6e7-bc700038e561" + "8d16d18f-bece-41ff-b0ae-b25e65146bf8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "15f795b8-c3a9-4df2-9b1d-95e161e18e76" + "e9b0ca7c-d815-4fd7-9cf2-2a49dd15f736" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "57" ], "x-ms-correlation-request-id": [ - "972e5775-c17f-4162-bc03-802eefd4d24d" + "6aa0b866-8644-4617-b290-8dc41f2eba3d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214927Z:972e5775-c17f-4162-bc03-802eefd4d24d" + "NORTHEUROPE:20210409T073433Z:6aa0b866-8644-4617-b290-8dc41f2eba3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:27 GMT" + "Fri, 09 Apr 2021 07:34:33 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58956-Global3430?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODk1Ni1HbG9iYWwzNDMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6705-Global6072?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NzA1LUdsb2JhbDYwNzI/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62d97318-7ec5-4954-bc72-2f58c4437a4d" + "21cec892-adcb-4932-bc2f-2d71ed8e1a06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "12a4aa01-8279-4e53-9968-37af4b06cd46" + "76dd4054-6c88-40a4-8927-372116667cfc" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "59741519-2210-41c6-b7f8-88b69c6963f6" + "02a26b6c-8ce7-4ec5-8bf9-2908a3832036" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214928Z:59741519-2210-41c6-b7f8-88b69c6963f6" + "NORTHEUROPE:20210409T073434Z:02a26b6c-8ce7-4ec5-8bf9-2908a3832036" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:28 GMT" + "Fri, 09 Apr 2021 07:34:34 GMT" ], "Expires": [ "-1" @@ -252,8 +252,8 @@ ], "Names": { "Test-NewDirectConnectionWithMicrosoftSessionInvalidV6": [ - "58956-Global3430", - "AS58956-Global6050" + "6705-Global6072", + "AS6705-Global8039" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionWithPeeringService.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionWithPeeringService.json index 1a6f1ed71486..15396522ec0f 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionWithPeeringService.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithMicrosoftSessionWithPeeringService.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47032-Global6612?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NzAzMi1HbG9iYWw2NjEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59507-Global3845?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81OTUwNy1HbG9iYWwzODQ1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47032,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47032-Global7418.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47032-Global7418.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47032-Global7418\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59507,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59507-Global2142.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59507-Global2142.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59507-Global2142\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1a5b651a-f975-42bd-b7ad-ed49af075747" + "495cef5c-7829-4fdb-a614-78c081f164f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "032f47c8-4f6b-4f8d-8afb-13538ae31635" + "664e12f0-e502-48a9-9c95-1ef3adcb7bfb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "55" + "57" ], "x-ms-correlation-request-id": [ - "169475ec-2519-4926-8876-6330459c60f8" + "8f305538-007c-4242-a9d7-8dda42e6ec3e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215019Z:169475ec-2519-4926-8876-6330459c60f8" + "NORTHEUROPE:20210409T073605Z:8f305538-007c-4242-a9d7-8dda42e6ec3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:50:19 GMT" + "Fri, 09 Apr 2021 07:36:05 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47032,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47032-Global7418.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47032-Global7418.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47032-Global7418\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"47032-Global6612\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47032-Global6612\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59507,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59507-Global2142.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59507-Global2142.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59507-Global2142\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"59507-Global3845\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59507-Global3845\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47032-Global6612?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NzAzMi1HbG9iYWw2NjEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59507-Global3845?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81OTUwNy1HbG9iYWwzODQ1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47032,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47032-Global7418.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47032-Global7418.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47032-Global7418\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59507,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59507-Global2142.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59507-Global2142.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59507-Global2142\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c485eabd-1701-4ebb-87c0-aca3fc30b673" + "617274fd-ccc2-4437-bf6f-2a0bf55b4d65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "dc997343-e718-4c33-8585-686ccc94954d" + "fae7d1d2-90a7-41e3-8c01-bd385d0cedc5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "54" + "56" ], "x-ms-correlation-request-id": [ - "db455792-5477-4bd4-8860-b339789fc414" + "295b59c2-82ce-4835-92c2-36ab968453cc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215021Z:db455792-5477-4bd4-8860-b339789fc414" + "NORTHEUROPE:20210409T073607Z:295b59c2-82ce-4835-92c2-36ab968453cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:50:20 GMT" + "Fri, 09 Apr 2021 07:36:07 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47032,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47032-Global7418.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47032-Global7418.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47032-Global7418\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"47032-Global6612\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47032-Global6612\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59507,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59507-Global2142.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59507-Global2142.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59507-Global2142\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"59507-Global3845\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59507-Global3845\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33f6476a-f774-4d05-a51d-28b7386c7878" + "8b73e0c1-5691-4ed3-a0fc-09345467231f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "6ca005ef-14cc-4602-bf1c-94eb74b8a2c3" + "215a09d3-2112-4001-9bdb-6c98d1d8d0c0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "58" ], "x-ms-correlation-request-id": [ - "7a0a93bf-e973-4eae-acd6-c896170cf295" + "22213437-106e-43b1-b4e4-03f750175a4f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215023Z:7a0a93bf-e973-4eae-acd6-c896170cf295" + "NORTHEUROPE:20210409T073609Z:22213437-106e-43b1-b4e4-03f750175a4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:50:23 GMT" + "Fri, 09 Apr 2021 07:36:09 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47032-Global6612?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NzAzMi1HbG9iYWw2NjEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59507-Global3845?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81OTUwNy1HbG9iYWwzODQ1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f61941f8-d9a9-4890-8a71-02b36551f54d" + "4c775b49-4fbd-4c18-8dab-239aa469d305" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "3744f9e5-5bf0-4012-a97e-725f3f7be283" + "f676b866-0060-4fae-8ad8-07cde9e9fefc" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "fd594388-75c4-4c88-90a4-0923e8e47039" + "19f41541-293b-4a6e-a419-430d8f4c665f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215024Z:fd594388-75c4-4c88-90a4-0923e8e47039" + "NORTHEUROPE:20210409T073610Z:19f41541-293b-4a6e-a419-430d8f4c665f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:50:24 GMT" + "Fri, 09 Apr 2021 07:36:09 GMT" ], "Expires": [ "-1" @@ -252,12 +252,12 @@ ], "Names": { "Test-NewDirectConnectionWithMicrosoftSessionWithPeeringService": [ - "47032-Global6612", - "AS47032-Global7418" + "59507-Global3845", + "AS59507-Global2142" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "30000" + "bandwidth": "80000" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithNoBgpSession.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithNoBgpSession.json index cb8fcdeb2aa6..02be2a577db8 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithNoBgpSession.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithNoBgpSession.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14805-Global5037?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNDgwNS1HbG9iYWw1MDM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7648-Global3230?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy83NjQ4LUdsb2JhbDMyMzA/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 14805,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14805-Global1994.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14805-Global1994.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14805-Global1994\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 7648,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS7648-Global7227.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS7648-Global7227.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS7648-Global7227\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e20bdcfe-39e6-4e5c-9f94-ef060c615bb8" + "20b08ffb-6c8e-4937-991c-b97b488bd296" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "382" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "5e956d5c-83b7-4afc-b5fe-e31c733d5db4" + "213ef225-995e-42b2-8cf3-8991b90f9848" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "4d95c897-ac05-4311-9f42-3569b31d6068" + "6daa76b6-0e5f-4382-b69a-f6cb0ed31ec4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214606Z:4d95c897-ac05-4311-9f42-3569b31d6068" + "NORTHEUROPE:20210409T072855Z:6daa76b6-0e5f-4382-b69a-f6cb0ed31ec4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:46:06 GMT" + "Fri, 09 Apr 2021 07:28:54 GMT" ], "Content-Length": [ - "611" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 14805,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14805-Global1994.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14805-Global1994.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14805-Global1994\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"14805-Global5037\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14805-Global5037\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 7648,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS7648-Global7227.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS7648-Global7227.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS7648-Global7227\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"7648-Global3230\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7648-Global3230\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14805-Global5037?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNDgwNS1HbG9iYWw1MDM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7648-Global3230?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy83NjQ4LUdsb2JhbDMyMzA/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 14805,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14805-Global1994.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14805-Global1994.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14805-Global1994\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 7648,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS7648-Global7227.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS7648-Global7227.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS7648-Global7227\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4a464b56-06c0-4a3b-bd50-c08990c19c02" + "ac25555f-ce36-4ef5-88b7-2e5336214099" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "418" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "fdfd0822-cc02-4201-af5c-84acd59f15a4" + "9951716e-ee13-48ca-a37c-fe0dd01e163c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "baa1cf70-784d-4cc3-99b8-f663972604ee" + "3517d2a3-9bfb-439e-a5d3-64edaee3e1d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214608Z:baa1cf70-784d-4cc3-99b8-f663972604ee" + "NORTHEUROPE:20210409T072857Z:3517d2a3-9bfb-439e-a5d3-64edaee3e1d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:46:07 GMT" + "Fri, 09 Apr 2021 07:28:57 GMT" ], "Content-Length": [ - "612" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 14805,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14805-Global1994.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14805-Global1994.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14805-Global1994\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"14805-Global5037\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14805-Global5037\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 7648,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS7648-Global7227.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS7648-Global7227.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS7648-Global7227\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"7648-Global3230\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7648-Global3230\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72cb1870-fe5a-48bf-b4d3-0f538a4b0448" + "411e6136-08e0-4bd2-b17f-48438ff61faf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "56010807-7909-4334-afc4-ad95709d3f9a" + "032ab917-ad72-41f2-a6d4-7520d0e99153" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "8828c4ce-fccf-4d96-b8d0-08e4244b3899" + "5a57ed38-5e6a-4ce3-a9bd-8a42448a8e01" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214610Z:8828c4ce-fccf-4d96-b8d0-08e4244b3899" + "NORTHEUROPE:20210409T072859Z:5a57ed38-5e6a-4ce3-a9bd-8a42448a8e01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:46:10 GMT" + "Fri, 09 Apr 2021 07:28:59 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14805-Global5037?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNDgwNS1HbG9iYWw1MDM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7648-Global3230?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy83NjQ4LUdsb2JhbDMyMzA/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cc841a9-28c9-4bbc-bc42-95048682a872" + "27a8bdd0-342c-4867-866f-2de2a623c1e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "c7664c6e-b8b9-4409-aa66-88dbe4eba852" + "5a1907a9-b0bc-4c0d-b192-94b28a2f0518" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "8c7d82b3-92bf-47d7-a114-de865052b86d" + "cb412b81-d798-41a4-80bf-630edbe27868" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214611Z:8c7d82b3-92bf-47d7-a114-de865052b86d" + "NORTHEUROPE:20210409T072900Z:cb412b81-d798-41a4-80bf-630edbe27868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:46:11 GMT" + "Fri, 09 Apr 2021 07:29:00 GMT" ], "Expires": [ "-1" @@ -252,12 +252,12 @@ ], "Names": { "Test-NewDirectConnectionWithNoBgpSession": [ - "14805-Global5037", - "AS14805-Global1994" + "7648-Global3230", + "AS7648-Global7227" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "60000" + "bandwidth": "50000" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithNoPeeringFacility.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithNoPeeringFacility.json index a37eda02afc1..059951ea0428 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithNoPeeringFacility.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithNoPeeringFacility.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55192-Global7078?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NTE5Mi1HbG9iYWw3MDc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27330-Global8468?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNzMzMC1HbG9iYWw4NDY4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 55192,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS55192-Global2073.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS55192-Global2073.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS55192-Global2073\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 27330,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS27330-Global1122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS27330-Global1122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS27330-Global1122\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2329c74f-aab7-4d5f-9c80-491fc04bc7a5" + "84cbd5d2-4059-4762-b2db-aac7949dd063" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "9e6713e0-bbc5-4daf-9973-a16a96f01ddd" + "260cdf4a-4deb-4080-976b-9c8ab4e0e25b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "46688c12-f140-4e4a-922b-ce1a0ac20ec8" + "0711d4f7-e7fb-4166-a5a9-f7aafc416ea5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214856Z:46688c12-f140-4e4a-922b-ce1a0ac20ec8" + "NORTHEUROPE:20210409T073342Z:0711d4f7-e7fb-4166-a5a9-f7aafc416ea5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:56 GMT" + "Fri, 09 Apr 2021 07:33:42 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 55192,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS55192-Global2073.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS55192-Global2073.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS55192-Global2073\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"55192-Global7078\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55192-Global7078\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 27330,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS27330-Global1122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS27330-Global1122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS27330-Global1122\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"27330-Global8468\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27330-Global8468\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55192-Global7078?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NTE5Mi1HbG9iYWw3MDc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27330-Global8468?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNzMzMC1HbG9iYWw4NDY4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 55192,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS55192-Global2073.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS55192-Global2073.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS55192-Global2073\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 27330,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS27330-Global1122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS27330-Global1122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS27330-Global1122\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "35682031-f0d3-441f-9708-ea492cc37a4d" + "eac813c0-4a1f-4aa3-8e3a-3b8ec15f8e5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "44aa2dad-6e1e-42e1-b4ec-23af12e037e4" + "d5f64518-7add-4134-a602-a1bdead8f410" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "fb3c9d73-3fde-4821-a0e9-6704095f4655" + "f7e2cbad-1bd6-4e15-8da9-4e57663b3fc9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214858Z:fb3c9d73-3fde-4821-a0e9-6704095f4655" + "NORTHEUROPE:20210409T073344Z:f7e2cbad-1bd6-4e15-8da9-4e57663b3fc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:58 GMT" + "Fri, 09 Apr 2021 07:33:43 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 55192,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS55192-Global2073.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS55192-Global2073.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS55192-Global2073\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"55192-Global7078\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55192-Global7078\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 27330,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS27330-Global1122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS27330-Global1122.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS27330-Global1122\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"27330-Global8468\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27330-Global8468\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55192-Global7078?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NTE5Mi1HbG9iYWw3MDc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27330-Global8468?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNzMzMC1HbG9iYWw4NDY4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14514f41-866d-40d0-adf8-5254a5fbc9aa" + "ceadacf5-ee1c-4756-a033-1bb254c7e24c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "a548cd4c-c7d9-4aa3-8d9b-f47658e6dcdd" + "70de8c96-4a8c-4060-8c41-b016e50deaba" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "2c65a096-796c-4734-8d56-1ceb6b7d175d" + "1fc786a2-dfde-4924-a31e-ccc671080a80" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214900Z:2c65a096-796c-4734-8d56-1ceb6b7d175d" + "NORTHEUROPE:20210409T073346Z:1fc786a2-dfde-4924-a31e-ccc671080a80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,7 +177,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:00 GMT" + "Fri, 09 Apr 2021 07:33:46 GMT" ], "Expires": [ "-1" @@ -192,8 +192,8 @@ ], "Names": { "Test-NewDirectConnectionWithNoPeeringFacility": [ - "55192-Global7078", - "AS55192-Global2073" + "27330-Global8468", + "AS27330-Global1122" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV4.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV4.json index 6b8cf5d31ce8..c9f7d4152c91 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV4.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV4.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20220-Global8856?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDIyMC1HbG9iYWw4ODU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/125-Global2869?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMjUtR2xvYmFsMjg2OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20220,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20220-Global1367\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 125,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS125-Global4952\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7971819e-a766-4a37-b8f2-c5ff75a6e6a7" + "e72fbb24-a4fe-477f-9b0c-f43aa28a8699" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "378" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "a366c38b-6278-4887-abea-f39e21311703" + "4e6ab279-c927-4502-857b-15603529cb58" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "a3d29d11-1377-46a9-9c00-361b94609595" + "6cd9811c-9f02-4df5-bd37-87d8651023d0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214828Z:a3d29d11-1377-46a9-9c00-361b94609595" + "NORTHEUROPE:20210409T073255Z:6cd9811c-9f02-4df5-bd37-87d8651023d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:27 GMT" + "Fri, 09 Apr 2021 07:32:54 GMT" ], "Content-Length": [ - "611" + "600" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20220,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20220-Global1367\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"20220-Global8856\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20220-Global8856\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 125,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS125-Global4952\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"125-Global2869\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/125-Global2869\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20220-Global8856?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDIyMC1HbG9iYWw4ODU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/125-Global2869?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMjUtR2xvYmFsMjg2OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20220,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20220-Global1367\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 125,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS125-Global4952\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "38b333c7-5891-4d97-af4d-723075cccc76" + "3a788c2d-b65a-4eaf-97bd-08d6f56d3ec2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "414" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "e9ed15a5-f5fe-48f9-810d-b0d3b61dcf5a" + "96a161de-1fd2-4a3d-88d5-eb31cecac384" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "f5049c8a-526c-44db-8fc9-f61aa4c6550a" + "d5bbc112-ac6e-4a47-9739-208fdbf7ee82" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214829Z:f5049c8a-526c-44db-8fc9-f61aa4c6550a" + "NORTHEUROPE:20210409T073256Z:d5bbc112-ac6e-4a47-9739-208fdbf7ee82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:29 GMT" + "Fri, 09 Apr 2021 07:32:56 GMT" ], "Content-Length": [ - "612" + "600" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20220,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20220-Global1367\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"20220-Global8856\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20220-Global8856\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 125,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS125-Global4952\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"125-Global2869\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/125-Global2869\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "047501cb-a801-4724-9cf5-fc92752cc1cc" + "904c56df-ed13-4c5d-95df-1f811887f5b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "efb1f3d5-a6a9-47f8-8e48-baf586c6a8f8" + "09e831cb-e39f-4957-9dfc-002051e53fe5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "c417254e-8a07-45c7-872d-615964479a0c" + "41c59038-53db-4e9f-97eb-e1e02db01af6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214831Z:c417254e-8a07-45c7-872d-615964479a0c" + "NORTHEUROPE:20210409T073259Z:41c59038-53db-4e9f-97eb-e1e02db01af6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:31 GMT" + "Fri, 09 Apr 2021 07:32:58 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d4de1ad-c538-49ac-9b1e-dd4bf82f457a" + "7f57635c-5d3d-4214-ab67-f1472f87e5bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "0b2581ee-aab8-479a-bd25-a84bc48bb2e6" + "6654516c-8475-4e31-bd03-17bc335fc822" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "b9d9025f-fcdf-467a-8e99-45c602dfe8f0" + "cc8cbc27-f8e9-4db0-9dce-b7c5e91d56f2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214832Z:b9d9025f-fcdf-467a-8e99-45c602dfe8f0" + "NORTHEUROPE:20210409T073300Z:cc8cbc27-f8e9-4db0-9dce-b7c5e91d56f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:32 GMT" + "Fri, 09 Apr 2021 07:32:59 GMT" ], "Content-Length": [ - "10108" + "13124" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,26 +249,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"rimckenn@microsoft.com\",\r\n \"phone\": \"2134234243\"\r\n }\r\n ],\r\n \"peerName\": \"L3 LLC\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestCenturyLink\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"701 Network\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"legacy701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/legacy701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 20220,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20220-Global1367.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20220-Global1367\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"20220-Global8856\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20220-Global8856\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 31970,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31970-Global3478\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"31970-Global5752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 48473,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48473-Global9474\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"48473-Global6502\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48473-Global6502\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 61037,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61037-Global2927\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"61037-Global7556\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 21182,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS21182-Global4882\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"21182-Global1966\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 58778,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58778-Global4942.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58778-Global4942.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58778-Global4942\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"58778-Global7527\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58778-Global7527\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 59711,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59711-Global9384\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"59711-Global7117\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 22140,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22140-Global3578\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"22140-Global8425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 39551,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39551-Global5820\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"39551-Global6890\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps5572@64025-Global7387.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"64025-Global7387\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"CenturyLink\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3356\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 58969,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"nocadmin@keralavisionisp.com\",\r\n \"phone\": \"8086897055\"\r\n }\r\n ],\r\n \"peerName\": \"Kerala Vision Broadband\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS58969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS58969\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15133,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"prsanapa@microsoft.com\",\r\n \"phone\": \"1234567890\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestVerizon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network@mit.edu\",\r\n \"phone\": \"\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 101,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@pnw-gigapop.net\",\r\n \"phone\": \"+18889345580\"\r\n }\r\n ],\r\n \"peerName\": \"Pacific Northwest Gigapop\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS101\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS101\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 6762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network.noc@tisparkle.com\",\r\n \"phone\": \"+390652744444\"\r\n }\r\n ],\r\n \"peerName\": \"Telecom Italia Sparkle\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS6762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 9116,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@012.net\",\r\n \"phone\": \"+972722003890\"\r\n }\r\n ],\r\n \"peerName\": \"012 Smile Telecom\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS9116\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 125,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS125-Global4952.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS125-Global4952\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"125-Global2869\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/125-Global2869\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 48411,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48411-Global1748.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48411-Global1748.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48411-Global1748\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"48411-Global2390\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48411-Global2390\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8682,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS8682-Global7723.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS8682-Global7723.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS8682-Global7723\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"8682-Global4132\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/8682-Global4132\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 19703,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS19703-Global9979.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS19703-Global9979.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS19703-Global9979\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"19703-Global977\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19703-Global977\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 32247,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS32247-Global3923.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS32247-Global3923.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS32247-Global3923\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"32247-Global1543\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 792,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS792-Global2640.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS792-Global2640.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS792-Global2640\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"792-Global3027\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/792-Global3027\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 44208,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS44208-Global1805.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS44208-Global1805.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS44208-Global1805\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"44208-Global4565\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44208-Global4565\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 63102,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS63102-Global2846.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS63102-Global2846.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS63102-Global2846\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"63102-Global8850\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/63102-Global8850\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 26030,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26030-Global6633.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26030-Global6633.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26030-Global6633\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"26030-Global4868\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26030-Global4868\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 36646,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps1860@36646-Global2523.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36646-Global8842.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36646-Global8842\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36646-Global2523\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36646-Global2523\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20220-Global8856?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDIyMC1HbG9iYWw4ODU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/125-Global2869?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMjUtR2xvYmFsMjg2OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cf7175d-24a2-4a83-85ac-f9ec4378a632" + "02049083-2442-4614-be5b-030f47d1d421" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -279,16 +279,16 @@ "no-cache" ], "x-ms-request-id": [ - "269cb37d-9e82-4480-979e-2cde16dfd189" + "c3365895-65a5-415c-9aa8-ef8767f6fd92" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "a959875e-83d9-4963-a263-efe1b6e14cbf" + "4cd5b556-ce99-46d4-94bf-61a98a130086" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214833Z:a959875e-83d9-4963-a263-efe1b6e14cbf" + "NORTHEUROPE:20210409T073301Z:4cd5b556-ce99-46d4-94bf-61a98a130086" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:48:32 GMT" + "Fri, 09 Apr 2021 07:33:01 GMT" ], "Expires": [ "-1" @@ -312,14 +312,14 @@ ], "Names": { "Test-NewDirectConnectionWithV4": [ - "20220-Global8856", - "AS20220-Global1367" + "125-Global2869", + "AS125-Global4952" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "30000", - "Hash": "e5b96fba7463fecf07bc73a9d652a69c", - "MaxPrefixV4": "12922" + "bandwidth": "80000", + "Hash": "bb01b8d2b16c70df725c8b2d84a323fe", + "MaxPrefixV4": "7837" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV4V6.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV4V6.json index e99feb7ce668..1ca21998379f 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV4V6.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV4V6.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38966-Global480?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zODk2Ni1HbG9iYWw0ODA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/291-Global8684?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTEtR2xvYmFsODY4ND9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 38966,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS38966-Global9376.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS38966-Global9376.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS38966-Global9376\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 291,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS291-Global8563.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS291-Global8563.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS291-Global8563\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7451151-a205-4141-8e9d-b566a79c1469" + "eca505f6-6e46-4676-a8b1-f6fbd9ecfe82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "378" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "57bb7abc-30f9-46a3-8011-e0772043fb85" + "b2b1c479-a71e-4b6f-9824-ad3d3c219023" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "9b8d2866-4723-4fdd-96eb-1d60f4816f5b" + "68009d3a-fd32-4f8c-b21e-1ec76bcdc1e2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214952Z:9b8d2866-4723-4fdd-96eb-1d60f4816f5b" + "NORTHEUROPE:20210409T073517Z:68009d3a-fd32-4f8c-b21e-1ec76bcdc1e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:52 GMT" + "Fri, 09 Apr 2021 07:35:17 GMT" ], "Content-Length": [ - "609" + "600" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 38966,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS38966-Global9376.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS38966-Global9376.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS38966-Global9376\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"38966-Global480\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38966-Global480\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 291,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS291-Global8563.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS291-Global8563.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS291-Global8563\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"291-Global8684\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/291-Global8684\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38966-Global480?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zODk2Ni1HbG9iYWw0ODA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/291-Global8684?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTEtR2xvYmFsODY4ND9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 38966,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS38966-Global9376.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS38966-Global9376.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS38966-Global9376\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 291,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS291-Global8563.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS291-Global8563.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS291-Global8563\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ea5d2621-cea2-4864-9121-bfa388547a06" + "17b1f631-a2c3-458c-9b62-04deefb084a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "414" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "8266c09b-09d4-4867-978d-3d8b78992cc1" + "2ace7d88-636a-456d-b22b-2f25c3d77eb4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "56" + "58" ], "x-ms-correlation-request-id": [ - "9cb08f1c-51aa-4451-97de-ec33375d255a" + "972b5076-dc0a-4e27-a999-ba84b7cafc13" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214953Z:9cb08f1c-51aa-4451-97de-ec33375d255a" + "NORTHEUROPE:20210409T073519Z:972b5076-dc0a-4e27-a999-ba84b7cafc13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:53 GMT" + "Fri, 09 Apr 2021 07:35:19 GMT" ], "Content-Length": [ - "610" + "600" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 38966,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS38966-Global9376.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS38966-Global9376.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS38966-Global9376\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"38966-Global480\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38966-Global480\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 291,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS291-Global8563.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS291-Global8563.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS291-Global8563\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"291-Global8684\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/291-Global8684\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee35d26b-5be1-4a80-90eb-90e3e3572a73" + "6f9663be-6410-45e0-9d56-ee32849b06d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "2ef29fd1-bdc6-40e0-b934-56389ea04969" + "3b13989b-ec88-4690-847c-5e05fc24951e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "079bd15e-783d-457d-9042-73bbf145a829" + "3b1bf573-762c-4058-b3e8-dda4f9283b67" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214956Z:079bd15e-783d-457d-9042-73bbf145a829" + "NORTHEUROPE:20210409T073521Z:3b1bf573-762c-4058-b3e8-dda4f9283b67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:55 GMT" + "Fri, 09 Apr 2021 07:35:21 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38966-Global480?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zODk2Ni1HbG9iYWw0ODA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/291-Global8684?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTEtR2xvYmFsODY4ND9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "536882ea-eaf6-48ce-8ef3-b327d09d7ba8" + "ac72bfe5-60d8-4d21-b123-0961effe6729" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "822bdea3-af96-4534-be14-6818797a70c7" + "a815cb65-312d-4c83-9548-e39441962682" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "d7695a16-3c72-4ab9-9ff5-5de669d5d2cb" + "cf76cc03-6626-4a16-9718-09f8f7cac527" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214957Z:d7695a16-3c72-4ab9-9ff5-5de669d5d2cb" + "NORTHEUROPE:20210409T073522Z:cf76cc03-6626-4a16-9718-09f8f7cac527" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:49:57 GMT" + "Fri, 09 Apr 2021 07:35:22 GMT" ], "Expires": [ "-1" @@ -252,15 +252,15 @@ ], "Names": { "Test-NewDirectConnectionWithV4V6": [ - "38966-Global480", - "AS38966-Global9376" + "291-Global8684", + "AS291-Global8563" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "90000", - "Hash": "0585440c62feb30e75aba10fdf0a14d0", - "MaxPrefixV4": "582", - "MaxPrefixV6": "1214" + "bandwidth": "30000", + "Hash": "6cb693ce3febee918faadc5d699553fd", + "MaxPrefixV4": "12485", + "MaxPrefixV6": "823" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV6.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV6.json index 55fd5e52e5e9..5c7e2ddae2ca 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV6.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWithV6.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18264-Global7669?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xODI2NC1HbG9iYWw3NjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29433-Global3789?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTQzMy1HbG9iYWwzNzg5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 18264,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS18264-Global4937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS18264-Global4937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS18264-Global4937\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29433-Global2987.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29433-Global2987.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29433-Global2987\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6d19112-b432-436b-8477-626f6e865ca8" + "574722b4-fc06-4b66-b54b-56f1076a03ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "3b2168ce-6695-4c7b-bcfe-f841a1be72ab" + "c1c6ef96-f074-4e74-99e4-173032b22e86" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "962fa6de-d0a0-49f8-b369-423f2a5d334e" + "e2391379-7b1f-4844-9938-32fd90023fc2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214537Z:962fa6de-d0a0-49f8-b369-423f2a5d334e" + "NORTHEUROPE:20210409T072807Z:e2391379-7b1f-4844-9938-32fd90023fc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:45:36 GMT" + "Fri, 09 Apr 2021 07:28:07 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 18264,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS18264-Global4937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS18264-Global4937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS18264-Global4937\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"18264-Global7669\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18264-Global7669\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29433-Global2987.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29433-Global2987.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29433-Global2987\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29433-Global3789\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29433-Global3789\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18264-Global7669?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xODI2NC1HbG9iYWw3NjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29433-Global3789?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTQzMy1HbG9iYWwzNzg5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 18264,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS18264-Global4937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS18264-Global4937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS18264-Global4937\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29433-Global2987.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29433-Global2987.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29433-Global2987\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "86c4e23d-c2e2-4af6-b75e-d3ffb753f6aa" + "3a26bc9e-f7d3-4253-9837-a77ddd61aa28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "ad2ee996-d900-4e26-8f3a-ce780fa00671" + "6121f115-100c-4a20-8af4-f03d2f13e08f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "bef06736-4d8a-4de0-8e1a-9052db9fe3f1" + "3947821e-9aa0-4791-aa61-26e5827988c9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214539Z:bef06736-4d8a-4de0-8e1a-9052db9fe3f1" + "NORTHEUROPE:20210409T072808Z:3947821e-9aa0-4791-aa61-26e5827988c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:45:38 GMT" + "Fri, 09 Apr 2021 07:28:08 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 18264,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS18264-Global4937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS18264-Global4937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS18264-Global4937\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"18264-Global7669\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18264-Global7669\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29433-Global2987.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29433-Global2987.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29433-Global2987\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29433-Global3789\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29433-Global3789\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f17d2b4-23ec-4c51-b366-8a49ff482722" + "2de4639c-5bf8-4819-9a08-5ef02db4d0e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "d26347ad-9e76-4a9e-bf67-33a41b34e61b" + "ae404552-6331-4602-9839-7a527729d720" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "549235d0-22ef-42d7-b9d1-ad111e6dc60b" + "f83fa392-b1ca-4dfb-9b5b-5202cb25147a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214541Z:549235d0-22ef-42d7-b9d1-ad111e6dc60b" + "NORTHEUROPE:20210409T072811Z:f83fa392-b1ca-4dfb-9b5b-5202cb25147a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:45:41 GMT" + "Fri, 09 Apr 2021 07:28:10 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18264-Global7669?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xODI2NC1HbG9iYWw3NjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29433-Global3789?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTQzMy1HbG9iYWwzNzg5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e668ff2a-964f-4521-ac1d-519435c562db" + "c52d58da-e07f-4159-af63-5f94c9e18d1b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "9dbe7d46-23d6-4026-8f21-1f921dbf68b0" + "bd3503fb-7651-46fb-8593-1e99c000c6f1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "4154628e-6c34-49c5-8334-fa9d99cd4332" + "579d612a-9f25-49c3-84d4-a6d359905eb6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214542Z:4154628e-6c34-49c5-8334-fa9d99cd4332" + "NORTHEUROPE:20210409T072812Z:579d612a-9f25-49c3-84d4-a6d359905eb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:45:42 GMT" + "Fri, 09 Apr 2021 07:28:12 GMT" ], "Expires": [ "-1" @@ -252,14 +252,14 @@ ], "Names": { "Test-NewDirectConnectionWithV6": [ - "18264-Global7669", - "AS18264-Global4937" + "29433-Global3789", + "AS29433-Global2987" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "40000", - "Hash": "698718942417d4e79a938d5614dec736", - "MaxPrefixV6": "1826" + "bandwidth": "70000", + "Hash": "ac19550cb1d5ed893df8227563ab2c92", + "MaxPrefixV6": "1927" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWrongV4.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWrongV4.json index 88350ec0ec04..7c9dd12ce220 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWrongV4.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWrongV4.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39590-Global9682?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTU5MC1HbG9iYWw5NjgyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24017-Global4346?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDAxNy1HbG9iYWw0MzQ2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39590,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39590-Global5465.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39590-Global5465.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39590-Global5465\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24017,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24017-Global9937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24017-Global9937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24017-Global9937\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7fbc7291-ee62-40b8-9a08-8cba1ba1d2be" + "03ec5569-aa89-4b7e-bb9e-7d1c3cad8af9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "56b9b867-09ab-4fae-bcf6-10d20a927fc3" + "1f763388-463d-4b67-be73-918f2dddd571" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "3128b077-62e9-4ef5-8162-ffd20816654a" + "7e3531c0-9e24-4963-908e-453be79f0532" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214635Z:3128b077-62e9-4ef5-8162-ffd20816654a" + "NORTHEUROPE:20210409T072943Z:7e3531c0-9e24-4963-908e-453be79f0532" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:46:35 GMT" + "Fri, 09 Apr 2021 07:29:42 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39590,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39590-Global5465.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39590-Global5465.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39590-Global5465\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"39590-Global9682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39590-Global9682\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24017,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24017-Global9937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24017-Global9937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24017-Global9937\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"24017-Global4346\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24017-Global4346\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39590-Global9682?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTU5MC1HbG9iYWw5NjgyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24017-Global4346?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDAxNy1HbG9iYWw0MzQ2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39590,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39590-Global5465.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39590-Global5465.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39590-Global5465\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24017,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24017-Global9937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24017-Global9937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24017-Global9937\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "18ebcc67-81c3-4172-a1c8-2792e32c6807" + "c5cd8871-f8ec-434f-9083-aaa10bbfbd65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "905f2cd0-4dc4-4d86-a9ce-816cc6eee04a" + "b419237e-cacb-4a42-9f9e-544cd0c720cb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "a3e9b89a-5f88-4d63-9c04-2cfa72892a22" + "0aa878b0-e31e-48f7-94de-bfd4927c34cf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214636Z:a3e9b89a-5f88-4d63-9c04-2cfa72892a22" + "NORTHEUROPE:20210409T072944Z:0aa878b0-e31e-48f7-94de-bfd4927c34cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:46:36 GMT" + "Fri, 09 Apr 2021 07:29:43 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39590,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39590-Global5465.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39590-Global5465.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39590-Global5465\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"39590-Global9682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39590-Global9682\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24017,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24017-Global9937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24017-Global9937.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24017-Global9937\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"24017-Global4346\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24017-Global4346\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acbc532c-0c91-4908-b647-c1634cd7aaa1" + "6229d2eb-ccbf-4473-b7b1-bda464d92694" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "598f1ff3-1b22-495f-9448-5c1ac63d9983" + "4d067b7d-7355-4bfe-aeb3-d83287c163b0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "f9e18f01-fff2-4601-958b-f82dafc0e820" + "deb8d923-7a91-49c2-beaa-f176903718c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214639Z:f9e18f01-fff2-4601-958b-f82dafc0e820" + "NORTHEUROPE:20210409T072947Z:deb8d923-7a91-49c2-beaa-f176903718c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:46:38 GMT" + "Fri, 09 Apr 2021 07:29:47 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39590-Global9682?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTU5MC1HbG9iYWw5NjgyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24017-Global4346?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDAxNy1HbG9iYWw0MzQ2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d5a7fca-3196-407b-9070-be547ca1d67f" + "ae2d97a6-eea4-44c6-b07a-95b71b8f670e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "adb067b3-d601-4ccd-a576-702ac6f23e20" + "c8629f67-af86-4d13-92ba-fd753d3d8e31" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "554fda94-00b0-4ce1-b14e-9c732daf7dd6" + "a72ce3e9-24ca-4ae7-a03f-fb1ce56de90a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214640Z:554fda94-00b0-4ce1-b14e-9c732daf7dd6" + "NORTHEUROPE:20210409T072948Z:a72ce3e9-24ca-4ae7-a03f-fb1ce56de90a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:46:39 GMT" + "Fri, 09 Apr 2021 07:29:48 GMT" ], "Expires": [ "-1" @@ -252,15 +252,15 @@ ], "Names": { "Test-NewDirectConnectionWrongV4": [ - "39590-Global9682", - "AS39590-Global5465" + "24017-Global4346", + "AS24017-Global9937" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "20000", - "Hash": "7e872f6e7b8388509367fe5bb80c0fda", - "MaxPrefixV4": "8742", - "MaxPrefixV6": "1097" + "bandwidth": "30000", + "Hash": "4af2e97b59cb73438277877441febd6e", + "MaxPrefixV4": "8193", + "MaxPrefixV6": "414" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWrongV6.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWrongV6.json index 541f10a897db..d40596ad03b7 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWrongV6.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectConnectionTests/TestNewDirectConnectionWrongV6.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22508-Global3765?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjUwOC1HbG9iYWwzNzY1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global183?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTg3Ni1HbG9iYWwxODM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22508,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22508-Global3618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22508-Global3618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22508-Global3618\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29876,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29876-Global3261.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29876-Global3261.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29876-Global3261\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "086da8ba-d640-45e1-a82b-ed6199e39e7e" + "08a4ea2c-de54-4ee0-a7e4-7b160bf8a18e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "2951cb50-6306-476a-95e0-d5dab0cc1c57" + "875cbba9-87cd-40a9-900b-1d9fc05c7a24" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "57" ], "x-ms-correlation-request-id": [ - "d61a5ed7-6103-44e7-aa2d-7abefeac9ad7" + "64feb12d-8fa6-4dae-8bfb-a30c6a42d973" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215048Z:d61a5ed7-6103-44e7-aa2d-7abefeac9ad7" + "NORTHEUROPE:20210409T073651Z:64feb12d-8fa6-4dae-8bfb-a30c6a42d973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:50:47 GMT" + "Fri, 09 Apr 2021 07:36:51 GMT" ], "Content-Length": [ - "611" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22508,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22508-Global3618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22508-Global3618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22508-Global3618\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"22508-Global3765\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22508-Global3765\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29876,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29876-Global3261.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29876-Global3261.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29876-Global3261\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29876-Global183\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global183\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22508-Global3765?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjUwOC1HbG9iYWwzNzY1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global183?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTg3Ni1HbG9iYWwxODM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22508,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22508-Global3618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22508-Global3618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22508-Global3618\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29876,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29876-Global3261.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29876-Global3261.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29876-Global3261\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a1064c1-029d-4a68-8954-f5fc735d6e98" + "be1123be-f3d5-4386-acf0-512cab38e2f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "b68814d5-66d0-40ab-bb1b-01d1984310df" + "a91ef318-9d7c-4bf1-b4c2-7dec47e3e769" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "56" ], "x-ms-correlation-request-id": [ - "43238f77-8652-4ee9-b6e1-5b456a988c86" + "621fec11-dc46-4f0e-bbee-03a5fc079a4d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215049Z:43238f77-8652-4ee9-b6e1-5b456a988c86" + "NORTHEUROPE:20210409T073653Z:621fec11-dc46-4f0e-bbee-03a5fc079a4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:50:49 GMT" + "Fri, 09 Apr 2021 07:36:53 GMT" ], "Content-Length": [ - "612" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22508,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22508-Global3618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22508-Global3618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22508-Global3618\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"22508-Global3765\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22508-Global3765\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29876,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29876-Global3261.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29876-Global3261.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29876-Global3261\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29876-Global183\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global183\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64977806-efe9-40df-be06-994e5d452909" + "4ab39a64-a8e3-41ab-8200-04cc81cdc71c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "252be798-331a-4f8a-b36e-d2d51e30bb26" + "06119ce9-662b-4b9f-92fd-b56e6362d7a6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "58" ], "x-ms-correlation-request-id": [ - "2248fba2-af30-462b-b9d1-88c99aeaac93" + "07c94103-5685-4bb2-b1ee-c1697164f234" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215052Z:2248fba2-af30-462b-b9d1-88c99aeaac93" + "NORTHEUROPE:20210409T073656Z:07c94103-5685-4bb2-b1ee-c1697164f234" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:50:51 GMT" + "Fri, 09 Apr 2021 07:36:55 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22508-Global3765?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjUwOC1HbG9iYWwzNzY1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global183?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTg3Ni1HbG9iYWwxODM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "badd209f-4319-49e3-a882-405afea0f962" + "e4a33b88-6b21-4d43-a62d-1ade5938eca6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "46593528-5ffb-4a46-8f4c-091efad43530" + "ce408afb-dbd7-4c32-a1ab-55f6adaebb7a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "f8a0655d-6a21-4c0a-9144-c916b3a15430" + "1c646e68-37bb-48b0-a945-8ef2d24efeb9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T215053Z:f8a0655d-6a21-4c0a-9144-c916b3a15430" + "NORTHEUROPE:20210409T073657Z:1c646e68-37bb-48b0-a945-8ef2d24efeb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:50:52 GMT" + "Fri, 09 Apr 2021 07:36:57 GMT" ], "Expires": [ "-1" @@ -252,15 +252,15 @@ ], "Names": { "Test-NewDirectConnectionWrongV6": [ - "22508-Global3765", - "AS22508-Global3618" + "29876-Global183", + "AS29876-Global3261" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "60000", - "Hash": "dff0d1114f460db7e47a46f7b840ad18", - "MaxPrefixV4": "88", - "MaxPrefixV6": "1136" + "bandwidth": "10000", + "Hash": "2abdddb1d7df4d332e38284e13edce24", + "MaxPrefixV4": "6939", + "MaxPrefixV6": "1542" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeering.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeering.json index 459b74e11320..1edc33dde41b 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeering.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeering.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3bc1f7a-c44e-4f18-8273-21f25d798743" + "d7b93a44-bcd0-4bf0-8715-546cad116665" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "c0145a2b-b82c-446a-931b-bbb1f32aab94" + "faaee783-be86-43da-a8b1-b54b17e6eacf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "480eea2f-5152-4796-b4ba-76bf6999c30b" + "6adc18d4-0d87-4f69-af84-d27f77047ee3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214135Z:480eea2f-5152-4796-b4ba-76bf6999c30b" + "NORTHEUROPE:20210409T085241Z:6adc18d4-0d87-4f69-af84-d27f77047ee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:41:34 GMT" + "Fri, 09 Apr 2021 08:52:41 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f730187d-87b2-4bd2-bb91-924625d7c9e9" + "a5a50be8-2b12-46e0-b953-24a147e4746a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -87,16 +87,16 @@ "no-cache" ], "x-ms-request-id": [ - "3ae70359-deb6-4c6f-9016-97dcdc50c9f7" + "e1367903-489a-4429-a73c-47c2d226dc53" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "e988abf2-11f2-410b-a102-87ecc9d05ec3" + "e6917fde-d65c-48c3-ad40-aa20d94b7e2b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214140Z:e988abf2-11f2-410b-a102-87ecc9d05ec3" + "NORTHEUROPE:20210409T085247Z:e6917fde-d65c-48c3-ad40-aa20d94b7e2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,10 +105,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:41:40 GMT" + "Fri, 09 Apr 2021 08:52:46 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,26 +117,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMTE4Mi1HbG9iYWwxOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36820-Global3777?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNjgyMC1HbG9iYWwzNzc3P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 21182,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS21182-Global4882\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36820,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36820-Global3554\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0d59ed89-0d71-4bd7-bf5d-d50c3f1e093e" + "f892374b-8095-4e5c-b2ad-baf70074afd3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -153,16 +153,16 @@ "no-cache" ], "x-ms-request-id": [ - "a0556b8a-d07d-4125-a3ad-35678085934a" + "e1850f2d-3048-483a-976c-eaa4276c9c18" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "56" ], "x-ms-correlation-request-id": [ - "e59b37ce-3fef-4d09-b4c5-6e9ebff21d94" + "9e223e86-ce3d-4066-9ff4-02c032ecb99b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214136Z:e59b37ce-3fef-4d09-b4c5-6e9ebff21d94" + "NORTHEUROPE:20210409T085243Z:9e223e86-ce3d-4066-9ff4-02c032ecb99b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,10 +171,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:41:36 GMT" + "Fri, 09 Apr 2021 08:52:43 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,26 +183,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 21182,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS21182-Global4882\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"21182-Global1966\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36820,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36820-Global3554\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36820-Global3777\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36820-Global3777\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMTE4Mi1HbG9iYWwxOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36820-Global3777?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNjgyMC1HbG9iYWwzNzc3P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 21182,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS21182-Global4882\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36820,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36820-Global3554\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "204d070f-b642-4c7c-b8a6-6d2c173eeda7" + "98436fad-b847-453b-8f35-faeee33d42d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "a57aa92c-69fa-4d82-a7b0-9e286531cd43" + "7ecae0e8-3e2d-4a04-9902-70157e1fce52" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "55" ], "x-ms-correlation-request-id": [ - "b71d0e8f-489e-46f2-8f9a-cf5a1a3a5b42" + "189a9220-01fb-4c3d-950f-55d5dea23e67" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214138Z:b71d0e8f-489e-46f2-8f9a-cf5a1a3a5b42" + "NORTHEUROPE:20210409T085244Z:189a9220-01fb-4c3d-950f-55d5dea23e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:41:37 GMT" + "Fri, 09 Apr 2021 08:52:44 GMT" ], "Content-Length": [ "612" @@ -249,26 +249,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 21182,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS21182-Global4882\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"21182-Global1966\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36820,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36820-Global3554\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36820-Global3777\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36820-Global3777\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMTE4Mi1HbG9iYWwxOTY2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36820-Global3777?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNjgyMC1HbG9iYWwzNzc3P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b107781-c37c-4e67-b61a-844b022456bf" + "b33ba662-4e68-4148-a042-961ae939479c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -279,16 +279,16 @@ "no-cache" ], "x-ms-request-id": [ - "de46da71-1eac-4dbd-83dd-d3aa7bccc4f4" + "dd5d9fd0-5b86-4daf-8e99-719736c95251" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "73361f33-4072-4e92-a279-551706a8a99e" + "13a4c702-8322-44dc-91f5-84579f7bdb9c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214140Z:73361f33-4072-4e92-a279-551706a8a99e" + "NORTHEUROPE:20210409T085247Z:13a4c702-8322-44dc-91f5-84579f7bdb9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:41:39 GMT" + "Fri, 09 Apr 2021 08:52:46 GMT" ], "Content-Length": [ "612" @@ -309,32 +309,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 21182,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS21182-Global4882.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS21182-Global4882\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"21182-Global1966\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36820,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36820-Global3554.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36820-Global3554\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36820-Global3777\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36820-Global3777\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RPbmVDb25uZWN0aW9uNTA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6846?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RPbmVDb25uZWN0aW9uNjg0Nj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"167.126.2.0/31\",\r\n \"sessionPrefixV6\": \"a77e:28f:b071:dcc4:3884:6771:bcce:bf00/127\",\r\n \"maxPrefixesAdvertisedV4\": 14972,\r\n \"maxPrefixesAdvertisedV6\": 32,\r\n \"md5AuthenticationKey\": \"34804a3a132f35764450fe74719260c0\"\r\n },\r\n \"connectionIdentifier\": \"f9cac58d-ebf2-40b2-b61f-0ec8538c144b\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36820-Global3777\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_36820\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4f14c08a-7bcb-4a9b-b16d-b4e5a0622f3a" + "a5a50be8-2b12-46e0-b953-24a147e4746a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1075" + "1072" ] }, "ResponseHeaders": { @@ -345,16 +345,16 @@ "no-cache" ], "x-ms-request-id": [ - "77d54052-8fb2-40d0-a5d1-45f484a522d9" + "aabb0dd9-1cc0-4e11-b41b-9845e7079232" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "c42e7233-77f4-4708-a402-b7eaf08cb3d0" + "8d510d6a-c0e5-4cde-8c9c-65232c3ab279" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214146Z:c42e7233-77f4-4708-a402-b7eaf08cb3d0" + "NORTHEUROPE:20210409T085251Z:8d510d6a-c0e5-4cde-8c9c-65232c3ab279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:41:46 GMT" + "Fri, 09 Apr 2021 08:52:51 GMT" ], "Content-Length": [ - "1946" + "1888" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,24 +375,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"66e38db7-a168-4f6c-a47a-3cde8384f67f\",\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"167.126.2.0/31\",\r\n \"sessionPrefixV6\": \"a77e:28f:b071:dcc4:3884:6771:bcce:bf00/127\",\r\n \"microsoftSessionIPv4Address\": \"167.126.2.1\",\r\n \"microsoftSessionIPv6Address\": \"a77e:28f:b071:dcc4:3884:6771:bcce:bf01\",\r\n \"peerSessionIPv4Address\": \"167.126.2.0\",\r\n \"peerSessionIPv6Address\": \"a77e:28f:b071:dcc4:3884:6771:bcce:bf00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14972,\r\n \"maxPrefixesAdvertisedV6\": 32,\r\n \"md5AuthenticationKey\": \"34804a3a132f35764450fe74719260c0\"\r\n },\r\n \"connectionIdentifier\": \"f9cac58d-ebf2-40b2-b61f-0ec8538c144b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36820-Global3777\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_36820\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6846\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6846\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 } ], "Names": { "Test-NewDirectPeering": [ - "DirectOneConnection504", - "21182-Global1966", - "AS21182-Global4882" + "DirectOneConnection6846", + "36820-Global3777", + "AS36820-Global3554" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "70000", - "Hash": "1b8696db27b02f2ccbd40cb2d55a4067", - "MaxPrefixV4": "19488", - "MaxPrefixV6": "995", - "sessionv4": "124.186.194.0/31", - "sessionv6": "7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127" + "bandwidth": "90000", + "Hash": "34804a3a132f35764450fe74719260c0", + "MaxPrefixV4": "14972", + "MaxPrefixV6": "32", + "sessionv4": "167.126.2.0/31", + "sessionv6": "a77e:28f:b071:dcc4:3884:6771:bcce:bf00/127" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPipeTwoConnections.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPipeTwoConnections.json index 872fb3476ece..84c12b9c485f 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPipeTwoConnections.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPipeTwoConnections.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMTk3MC1HbG9iYWw1NzUyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23509-Global4555?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMzUwOS1HbG9iYWw0NTU1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 31970,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31970-Global3478\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 23509,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS23509-Global3497.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS23509-Global3497.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS23509-Global3497\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dcf5c183-d760-409b-9950-69ba6ccda3b7" + "586a8ae4-ddea-4384-bd26-8b844944c263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "86fb94ed-f67c-4519-8ee0-04992c26a14c" + "8cedc4d5-076d-48e8-b971-f45f5c5bca19" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "b7095f2e-e8c9-4171-a2cb-9b3376a7cf7d" + "2529221a-4da9-4f06-83dd-856267703e37" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214350Z:b7095f2e-e8c9-4171-a2cb-9b3376a7cf7d" + "NORTHEUROPE:20210409T084001Z:2529221a-4da9-4f06-83dd-856267703e37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:43:49 GMT" + "Fri, 09 Apr 2021 08:40:00 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 31970,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31970-Global3478\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"31970-Global5752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 23509,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS23509-Global3497.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS23509-Global3497.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS23509-Global3497\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"23509-Global4555\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23509-Global4555\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMTk3MC1HbG9iYWw1NzUyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23509-Global4555?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMzUwOS1HbG9iYWw0NTU1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 31970,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31970-Global3478\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 23509,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS23509-Global3497.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS23509-Global3497.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS23509-Global3497\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b12f727f-7042-4348-8539-4ea3c149c80d" + "468e224d-9556-4d8a-84ef-053e1b3e4a2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "ab3214f9-d307-4585-9951-2c9728ad8027" + "b2a2a4c6-a193-4cd1-8ef9-2d70ae4af858" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "54" ], "x-ms-correlation-request-id": [ - "6779debd-937c-4a06-9629-e0d1c35c88c4" + "387b911b-8696-4238-a32e-812fdcdbff21" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214351Z:6779debd-937c-4a06-9629-e0d1c35c88c4" + "NORTHEUROPE:20210409T084002Z:387b911b-8696-4238-a32e-812fdcdbff21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:43:51 GMT" + "Fri, 09 Apr 2021 08:40:01 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 31970,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31970-Global3478.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31970-Global3478\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"31970-Global5752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 23509,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS23509-Global3497.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS23509-Global3497.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS23509-Global3497\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"23509-Global4555\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23509-Global4555\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cc8b237-9cba-47a1-b88f-93f10a8a0f9c" + "42c1fcbb-90aa-4b16-83d8-5a3bb7d8ec1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "8545923d-f4e1-491b-9576-6a5de835ad7f" + "e025f9c5-9e12-4aca-b13c-eb4a02974a28" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "871d6a25-ce1a-4158-9a8d-c9437ba7861e" + "47c61a17-3921-41a2-b70b-664cbb29873a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214354Z:871d6a25-ce1a-4158-9a8d-c9437ba7861e" + "NORTHEUROPE:20210409T084005Z:47c61a17-3921-41a2-b70b-664cbb29873a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:43:54 GMT" + "Fri, 09 Apr 2021 08:40:05 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a926026-e759-4bea-91b9-bc5cb98da047" + "e68b5e6c-1b02-4951-b4b9-2d6fe349c02c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "9ad80a50-aa51-4ddf-85a2-f05d262a8f17" + "e6cdf110-261f-43a7-a0ef-84fc58f3f28b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "54" ], "x-ms-correlation-request-id": [ - "9bc4e94f-d6a2-4945-bc82-8e10309ab807" + "22b59c7b-56bb-466d-a36b-06f66b0d9deb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214354Z:9bc4e94f-d6a2-4945-bc82-8e10309ab807" + "NORTHEUROPE:20210409T084005Z:22b59c7b-56bb-466d-a36b-06f66b0d9deb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:43:54 GMT" + "Fri, 09 Apr 2021 08:40:05 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,32 +249,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RPbmVDb25uZWN0aW9uOTczMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9920?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RPbmVDb25uZWN0aW9uOTkyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.128.176.0/31\",\r\n \"sessionPrefixV6\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500/127\",\r\n \"maxPrefixesAdvertisedV4\": 5747,\r\n \"maxPrefixesAdvertisedV6\": 854,\r\n \"md5AuthenticationKey\": \"02b2aed2612bb68f2d883c77f5961b88\"\r\n },\r\n \"connectionIdentifier\": \"6a87a92c-17c7-43ef-ad42-b5e839c056c9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"37.125.37.0/31\",\r\n \"sessionPrefixV6\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00/127\",\r\n \"maxPrefixesAdvertisedV4\": 5747,\r\n \"maxPrefixesAdvertisedV6\": 854,\r\n \"md5AuthenticationKey\": \"02b2aed2612bb68f2d883c77f5961b88\"\r\n },\r\n \"connectionIdentifier\": \"b02072c9-f9c2-4d2e-b3a4-8063b75e8a7d\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23509-Global4555\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_23509\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4a8e612a-e326-4a21-9463-d723220e2a6a" + "e68b5e6c-1b02-4951-b4b9-2d6fe349c02c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1662" + "1664" ] }, "ResponseHeaders": { @@ -285,16 +285,16 @@ "no-cache" ], "x-ms-request-id": [ - "625e7ced-0a0b-4dd0-9917-ee8453869685" + "728a3cf5-6097-4490-8845-f02b70dc2700" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "992687c1-ea5d-473e-a5e2-66484701c8a5" + "f932a831-7527-4135-83ef-1056acd951ed" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214359Z:992687c1-ea5d-473e-a5e2-66484701c8a5" + "NORTHEUROPE:20210409T084011Z:f932a831-7527-4135-83ef-1056acd951ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:43:59 GMT" + "Fri, 09 Apr 2021 08:40:10 GMT" ], "Content-Length": [ - "2969" + "2928" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,24 +315,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"2b82591c-de2a-480c-a146-be4e61dbaa4c\",\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.128.176.0/31\",\r\n \"sessionPrefixV6\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"175.128.176.1\",\r\n \"microsoftSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b501\",\r\n \"peerSessionIPv4Address\": \"175.128.176.0\",\r\n \"peerSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5747,\r\n \"maxPrefixesAdvertisedV6\": 854,\r\n \"md5AuthenticationKey\": \"02b2aed2612bb68f2d883c77f5961b88\"\r\n },\r\n \"connectionIdentifier\": \"6a87a92c-17c7-43ef-ad42-b5e839c056c9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"37.125.37.0/31\",\r\n \"sessionPrefixV6\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"37.125.37.1\",\r\n \"microsoftSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a01\",\r\n \"peerSessionIPv4Address\": \"37.125.37.0\",\r\n \"peerSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5747,\r\n \"maxPrefixesAdvertisedV6\": 854,\r\n \"md5AuthenticationKey\": \"02b2aed2612bb68f2d883c77f5961b88\"\r\n },\r\n \"connectionIdentifier\": \"b02072c9-f9c2-4d2e-b3a4-8063b75e8a7d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23509-Global4555\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_23509\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9920\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9920\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 } ], "Names": { "Test-NewDirectPeeringPipeTwoConnections": [ - "31970-Global5752", - "AS31970-Global3478", - "DirectOneConnection9731" + "23509-Global4555", + "AS23509-Global3497", + "DirectOneConnection9920" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", "bandwidth": "80000", - "Hash": "d400e01c542f45fd2a41c758cbc3d43d", - "MaxPrefixV4": "14026", - "MaxPrefixV6": "879", - "sessionv4": "44.54.241.0/31", - "sessionv6": "2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127" + "Hash": "02b2aed2612bb68f2d883c77f5961b88", + "MaxPrefixV4": "5747", + "MaxPrefixV6": "854", + "sessionv4": "175.128.176.0/31", + "sessionv6": "af80:b0fd:1c40:bcab:7d92:d56f:661d:b500/127" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPremiumDirectFree.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPremiumDirectFree.json index f7fd4699bd80..891a60dc71a9 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPremiumDirectFree.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPremiumDirectFree.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MTAzNy1HbG9iYWw3NTU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29502-Global3487?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTUwMi1HbG9iYWwzNDg3P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 61037,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61037-Global2927\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29502,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29502-Global7121.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29502-Global7121.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29502-Global7121\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cf1795e8-2f53-474e-bee0-b79e6543d9f1" + "3a92923d-d1f4-486f-a773-34ff3fc01328" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "12a778c6-70ae-40b5-a3e5-736fab8b7786" + "32befbcc-2e07-4502-bf44-b193a58b3565" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "33f49a55-62de-407c-89a7-876c1c5963f9" + "b052c7a5-55d6-40c2-824a-4c213cad9370" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214212Z:33f49a55-62de-407c-89a7-876c1c5963f9" + "NORTHEUROPE:20210409T083748Z:b052c7a5-55d6-40c2-824a-4c213cad9370" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:12 GMT" + "Fri, 09 Apr 2021 08:37:47 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 61037,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61037-Global2927\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"61037-Global7556\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29502,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29502-Global7121.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29502-Global7121.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29502-Global7121\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29502-Global3487\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29502-Global3487\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MTAzNy1HbG9iYWw3NTU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29502-Global3487?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTUwMi1HbG9iYWwzNDg3P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 61037,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61037-Global2927\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29502,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29502-Global7121.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29502-Global7121.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29502-Global7121\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "786e1c76-fa89-4723-9451-a5d7c1707942" + "e639aef3-22a4-46d0-85c3-da8fbfb7c2f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "42dcba0a-9de4-4ae7-a2dc-d489e402ee77" + "401ff41a-283d-4f28-a8f0-c0382fb5da00" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "54" ], "x-ms-correlation-request-id": [ - "0fda86a4-b4a6-449d-9887-9c6508dc8bbc" + "3cdca289-1d9e-4381-be00-f7eb9afb8c5b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214214Z:0fda86a4-b4a6-449d-9887-9c6508dc8bbc" + "NORTHEUROPE:20210409T083749Z:3cdca289-1d9e-4381-be00-f7eb9afb8c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:13 GMT" + "Fri, 09 Apr 2021 08:37:49 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 61037,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS61037-Global2927.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS61037-Global2927\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"61037-Global7556\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29502,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29502-Global7121.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29502-Global7121.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29502-Global7121\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29502-Global3487\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29502-Global3487\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2689bef-5a5f-4249-83ba-4464fb07597b" + "ab865c95-f16d-40c6-afd3-219a4f3482d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "10d9df0b-93bb-4ed9-ab07-8713673bf3e6" + "f5b4aca3-13c4-4b1b-a557-dc54dd660593" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "61358c92-329b-432c-be22-ea0ce197bdda" + "12b09819-1279-4c50-ba8e-d6e715d9dbfc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214216Z:61358c92-329b-432c-be22-ea0ce197bdda" + "NORTHEUROPE:20210409T083752Z:12b09819-1279-4c50-ba8e-d6e715d9dbfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:16 GMT" + "Fri, 09 Apr 2021 08:37:52 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcacf4bd-5da9-4466-8972-ca27f226d3dc" + "90dd16f4-fa1b-4ae3-82a0-2434464451c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "2b249de3-27e1-40cb-8df3-16280733fac3" + "fd264711-625c-4551-918e-a797749733ac" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "61ced6b9-2e6e-455e-9199-5f05e037ec90" + "5c916920-f7b4-4ba9-b23d-d0f4ae127e26" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214217Z:61ced6b9-2e6e-455e-9199-5f05e037ec90" + "NORTHEUROPE:20210409T083753Z:5c916920-f7b4-4ba9-b23d-d0f4ae127e26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:16 GMT" + "Fri, 09 Apr 2021 08:37:52 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,32 +249,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RPbmVDb25uZWN0aW9uNTMzNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7891?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RPbmVDb25uZWN0aW9uNzg5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"165.89.180.0/31\",\r\n \"sessionPrefixV6\": \"a559:b416:73a9:c221:a7ae:a025:faf3:9900/127\",\r\n \"maxPrefixesAdvertisedV4\": 17491,\r\n \"maxPrefixesAdvertisedV6\": 605,\r\n \"md5AuthenticationKey\": \"c00c89846e82ebc535c941bad82acc70\"\r\n },\r\n \"connectionIdentifier\": \"b843de18-1311-4f3c-aaff-9d1598d1faab\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"62.23.186.0/31\",\r\n \"sessionPrefixV6\": \"3e17:ba96:ae04:cd3b:9986:9e56:f0ad:bf00/127\",\r\n \"maxPrefixesAdvertisedV4\": 17491,\r\n \"maxPrefixesAdvertisedV6\": 605,\r\n \"md5AuthenticationKey\": \"c00c89846e82ebc535c941bad82acc70\"\r\n },\r\n \"connectionIdentifier\": \"afaaa790-ad8e-4bd3-8822-243ce64140cd\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29502-Global3487\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_29502\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5944fe90-3cd4-4f7d-ae67-653ff35132de" + "90dd16f4-fa1b-4ae3-82a0-2434464451c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1663" + "1664" ] }, "ResponseHeaders": { @@ -285,16 +285,16 @@ "no-cache" ], "x-ms-request-id": [ - "193c3186-3c46-4e1e-8a35-b8cd036abe7a" + "67242a15-fe11-40b1-9c58-11fedd3a4435" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "906048e5-d112-46d2-bf82-1da7f37cd0c8" + "c7aac6a3-bd62-4f3a-9af9-9ede78df0a9e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214222Z:906048e5-d112-46d2-bf82-1da7f37cd0c8" + "NORTHEUROPE:20210409T083757Z:c7aac6a3-bd62-4f3a-9af9-9ede78df0a9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:22 GMT" + "Fri, 09 Apr 2021 08:37:57 GMT" ], "Content-Length": [ - "2979" + "2927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,24 +315,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"eTag\": \"a657cffc-0113-4bf4-b526-f10bb545edca\",\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"165.89.180.0/31\",\r\n \"sessionPrefixV6\": \"a559:b416:73a9:c221:a7ae:a025:faf3:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"165.89.180.1\",\r\n \"microsoftSessionIPv6Address\": \"a559:b416:73a9:c221:a7ae:a025:faf3:9901\",\r\n \"peerSessionIPv4Address\": \"165.89.180.0\",\r\n \"peerSessionIPv6Address\": \"a559:b416:73a9:c221:a7ae:a025:faf3:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17491,\r\n \"maxPrefixesAdvertisedV6\": 605,\r\n \"md5AuthenticationKey\": \"c00c89846e82ebc535c941bad82acc70\"\r\n },\r\n \"connectionIdentifier\": \"b843de18-1311-4f3c-aaff-9d1598d1faab\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"62.23.186.0/31\",\r\n \"sessionPrefixV6\": \"3e17:ba96:ae04:cd3b:9986:9e56:f0ad:bf00/127\",\r\n \"microsoftSessionIPv4Address\": \"62.23.186.1\",\r\n \"microsoftSessionIPv6Address\": \"3e17:ba96:ae04:cd3b:9986:9e56:f0ad:bf01\",\r\n \"peerSessionIPv4Address\": \"62.23.186.0\",\r\n \"peerSessionIPv6Address\": \"3e17:ba96:ae04:cd3b:9986:9e56:f0ad:bf00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17491,\r\n \"maxPrefixesAdvertisedV6\": 605,\r\n \"md5AuthenticationKey\": \"c00c89846e82ebc535c941bad82acc70\"\r\n },\r\n \"connectionIdentifier\": \"afaaa790-ad8e-4bd3-8822-243ce64140cd\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29502-Global3487\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_29502\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7891\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7891\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 } ], "Names": { "Test-NewDirectPeeringPremiumDirectFree": [ - "61037-Global7556", - "AS61037-Global2927", - "DirectOneConnection5336" + "29502-Global3487", + "AS29502-Global7121", + "DirectOneConnection7891" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "50000", - "Hash": "f5e569ff8691c9a4f4086a471ba3ea20", - "MaxPrefixV4": "813", - "MaxPrefixV6": "1309", - "sessionv4": "206.247.165.0/31", - "sessionv6": "cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127" + "bandwidth": "70000", + "Hash": "c00c89846e82ebc535c941bad82acc70", + "MaxPrefixV4": "17491", + "MaxPrefixV6": "605", + "sessionv4": "165.89.180.0/31", + "sessionv6": "a559:b416:73a9:c221:a7ae:a025:faf3:9900/127" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPremiumDirectUnlimited.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPremiumDirectUnlimited.json index f89353b7ad3b..4cab37b27ddb 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPremiumDirectUnlimited.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringPremiumDirectUnlimited.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48473-Global6502?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80ODQ3My1HbG9iYWw2NTAyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24770-Global1330?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDc3MC1HbG9iYWwxMzMwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 48473,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48473-Global9474\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24770,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24770-Global4618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24770-Global4618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24770-Global4618\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4fad4046-c60d-44e6-914f-9ddedc043c2a" + "36cb81e4-23de-4d5b-b833-f4eeddf8c205" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "cece1f7f-2bef-4580-a3fa-06aa160de660" + "fe836452-4104-4a43-a00d-982654235bc0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "f5c37019-c23f-486f-afd5-db4f18919be4" + "db40041a-3625-4131-afa6-7e1a50f23139" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214251Z:f5c37019-c23f-486f-afd5-db4f18919be4" + "NORTHEUROPE:20210409T083841Z:db40041a-3625-4131-afa6-7e1a50f23139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:50 GMT" + "Fri, 09 Apr 2021 08:38:40 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 48473,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48473-Global9474\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"48473-Global6502\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48473-Global6502\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24770,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24770-Global4618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24770-Global4618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24770-Global4618\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"24770-Global1330\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24770-Global1330\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48473-Global6502?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80ODQ3My1HbG9iYWw2NTAyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24770-Global1330?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDc3MC1HbG9iYWwxMzMwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 48473,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48473-Global9474\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24770,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24770-Global4618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24770-Global4618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24770-Global4618\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f46689e1-a408-4c35-805a-ac45a5a33e4d" + "49d3372e-ac5a-4f8c-8640-5e4e2de7f47f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "c0ce7aab-7ecc-4676-bddc-0cfb2fa49621" + "e541f15b-91e6-4a65-ab0c-f400540dbf39" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "54" ], "x-ms-correlation-request-id": [ - "d1248d57-6411-44d7-ab68-b984edeef4b3" + "47aba895-4e3d-4a82-b4e5-eeac684e3bed" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214252Z:d1248d57-6411-44d7-ab68-b984edeef4b3" + "NORTHEUROPE:20210409T083843Z:47aba895-4e3d-4a82-b4e5-eeac684e3bed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:52 GMT" + "Fri, 09 Apr 2021 08:38:43 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 48473,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48473-Global9474.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48473-Global9474\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"48473-Global6502\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48473-Global6502\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24770,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24770-Global4618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24770-Global4618.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24770-Global4618\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"24770-Global1330\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24770-Global1330\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00bee7de-b9e9-4cf0-a5ae-760718b0c0a7" + "2bb5c3bf-e691-4ce2-8ef7-1e6d2e453215" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "f525802f-ed12-4054-98dd-bcb01b5148ed" + "0785c2e2-7848-4e24-9c99-c53b2fa3996a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "56" ], "x-ms-correlation-request-id": [ - "5572aa01-0b6e-4fda-ba4c-982bbda29fb2" + "a8b0e103-d957-4fcf-ae2a-e0d294c2eab9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214255Z:5572aa01-0b6e-4fda-ba4c-982bbda29fb2" + "NORTHEUROPE:20210409T083845Z:a8b0e103-d957-4fcf-ae2a-e0d294c2eab9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:54 GMT" + "Fri, 09 Apr 2021 08:38:45 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d84394d1-8a95-4c10-9d6a-0619618f0c41" + "7e4792f7-b503-4855-8755-5d6a47eedf45" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "e8fafa41-5740-4050-80b2-1fdf607716d5" + "35a02f44-e1a2-4384-b4cc-50e0aacc653f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "55" ], "x-ms-correlation-request-id": [ - "23401465-dad7-4087-96fb-66d474395fe8" + "802dec63-df30-4e26-959f-74ef522b1b60" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214256Z:23401465-dad7-4087-96fb-66d474395fe8" + "NORTHEUROPE:20210409T083846Z:802dec63-df30-4e26-959f-74ef522b1b60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:42:55 GMT" + "Fri, 09 Apr 2021 08:38:45 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,32 +249,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9425?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RPbmVDb25uZWN0aW9uOTQyNT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection251?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RPbmVDb25uZWN0aW9uMjUxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"205.173.195.0/31\",\r\n \"sessionPrefixV6\": \"cdad:c32f:3fc8:dfcb:b57a:663d:7a3c:c800/127\",\r\n \"maxPrefixesAdvertisedV4\": 15066,\r\n \"maxPrefixesAdvertisedV6\": 217,\r\n \"md5AuthenticationKey\": \"9f7f3ab937b2d7ad8148956257863f3d\"\r\n },\r\n \"connectionIdentifier\": \"b9de22b8-4ec1-401f-8d84-35f1f4a004bd\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 63,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"234.72.76.0/31\",\r\n \"sessionPrefixV6\": \"ea48:4ceb:d7ff:7a44:ec16:4cdc:2d40:3a00/127\",\r\n \"maxPrefixesAdvertisedV4\": 15066,\r\n \"maxPrefixesAdvertisedV6\": 217,\r\n \"md5AuthenticationKey\": \"9f7f3ab937b2d7ad8148956257863f3d\"\r\n },\r\n \"connectionIdentifier\": \"c4521fb8-3c5e-412d-be86-1a1104904b9d\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48473-Global6502\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_48473\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"224.32.80.0/31\",\r\n \"sessionPrefixV6\": \"e020:5005:2d68:81ba:1732:1792:c116:1d00/127\",\r\n \"maxPrefixesAdvertisedV4\": 15244,\r\n \"maxPrefixesAdvertisedV6\": 911,\r\n \"md5AuthenticationKey\": \"91ff51df0ad5bc7e0c0c9d8bd4860f1a\"\r\n },\r\n \"connectionIdentifier\": \"4e47b434-3233-4137-b65d-22c13b80ceec\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1236,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"6.80.17.0/31\",\r\n \"sessionPrefixV6\": \"650:11a5:bcbf:83c0:9328:165e:7e85:2700/127\",\r\n \"maxPrefixesAdvertisedV4\": 15244,\r\n \"maxPrefixesAdvertisedV6\": 911,\r\n \"md5AuthenticationKey\": \"91ff51df0ad5bc7e0c0c9d8bd4860f1a\"\r\n },\r\n \"connectionIdentifier\": \"1cecf4c1-93d4-47ff-8ced-734c65c9e612\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24770-Global1330\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_24770\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "18ef56ff-fe7c-447d-80c6-b7f43e6d248e" + "7e4792f7-b503-4855-8755-5d6a47eedf45" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1673" + "1672" ] }, "ResponseHeaders": { @@ -285,7 +285,7 @@ "no-cache" ], "x-ms-request-id": [ - "d4534d38-da1b-4115-86fd-7ca91405d487" + "6ba1d55c-422f-44c7-b77c-991b238e9319" ], "x-ms-failure-cause": [ "service" @@ -294,10 +294,10 @@ "59" ], "x-ms-correlation-request-id": [ - "77170298-7d1a-411d-a666-a0e311bedc95" + "6848a11b-9436-4a6d-9375-76c7c7fdc294" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T214325Z:77170298-7d1a-411d-a666-a0e311bedc95" + "NORTHEUROPE:20210409T083916Z:6848a11b-9436-4a6d-9375-76c7c7fdc294" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,13 +306,13 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:43:25 GMT" + "Fri, 09 Apr 2021 08:39:16 GMT" ], "Connection": [ "close" ], "Content-Length": [ - "85" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,24 +321,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"Internal error during provisioning\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"Internal error during provisioning\"\r\n }\r\n}", "StatusCode": 500 } ], "Names": { "Test-NewDirectPeeringPremiumDirectUnlimited": [ - "48473-Global6502", - "AS48473-Global9474", - "DirectOneConnection9425" + "24770-Global1330", + "AS24770-Global4618", + "DirectOneConnection251" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "20000", - "Hash": "9f7f3ab937b2d7ad8148956257863f3d", - "MaxPrefixV4": "15066", - "MaxPrefixV6": "217", - "sessionv4": "205.173.195.0/31", - "sessionv6": "cdad:c32f:3fc8:dfcb:b57a:663d:7a3c:c800/127" + "bandwidth": "40000", + "Hash": "91ff51df0ad5bc7e0c0c9d8bd4860f1a", + "MaxPrefixV4": "15244", + "MaxPrefixV6": "911", + "sessionv4": "224.32.80.0/31", + "sessionv6": "e020:5005:2d68:81ba:1732:1792:c116:1d00/127" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringWithPipe.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringWithPipe.json index a1f60eef2572..22a7a893ec34 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringWithPipe.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewDirectPeeringTests/TestNewDirectPeeringWithPipe.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNTcwNC1HbG9iYWw3NTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/12035-Global1120?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMjAzNS1HbG9iYWwxMTIwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 25704,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25704-Global6555.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25704-Global6555.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25704-Global6555\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 12035,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS12035-Global8272.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS12035-Global8272.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS12035-Global8272\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19d91d8b-9a78-4193-a26a-4d3c3dcd8cb0" + "fd4057a7-49d9-46cb-991f-f7cd4c40a079" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "614f2ec5-6417-486c-8591-8b266c4f175e" + "99591e2a-6606-427a-8ad6-79c7caa5a931" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "07f7b2e0-8fdb-4218-b247-81a813254325" + "4c3572ce-9edf-43b1-9280-20096050d7b4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225815Z:07f7b2e0-8fdb-4218-b247-81a813254325" + "NORTHEUROPE:20210409T084710Z:4c3572ce-9edf-43b1-9280-20096050d7b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:15 GMT" + "Fri, 09 Apr 2021 08:47:09 GMT" ], "Content-Length": [ - "609" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 25704,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25704-Global6555.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25704-Global6555.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25704-Global6555\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"25704-Global758\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 12035,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS12035-Global8272.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS12035-Global8272.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS12035-Global8272\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"12035-Global1120\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/12035-Global1120\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNTcwNC1HbG9iYWw3NTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/12035-Global1120?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMjAzNS1HbG9iYWwxMTIwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 25704,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25704-Global6555.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25704-Global6555.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25704-Global6555\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 12035,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS12035-Global8272.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS12035-Global8272.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS12035-Global8272\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3f9e0155-5a5a-4297-ba08-df14ce4f184d" + "8ba57058-67af-48e1-a6d8-4882bc727cc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "36c94d35-e58d-4598-b515-ee0593729add" + "3e7b4779-bbcd-4638-86fb-9b7501772f83" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "54" ], "x-ms-correlation-request-id": [ - "04139bb8-2a27-46e6-9918-9814cebaf2b5" + "e5c91662-77bc-4000-b2fc-33e9ca74cd90" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225816Z:04139bb8-2a27-46e6-9918-9814cebaf2b5" + "NORTHEUROPE:20210409T084712Z:e5c91662-77bc-4000-b2fc-33e9ca74cd90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:16 GMT" + "Fri, 09 Apr 2021 08:47:12 GMT" ], "Content-Length": [ - "610" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 25704,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25704-Global6555.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25704-Global6555.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25704-Global6555\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"25704-Global758\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 12035,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS12035-Global8272.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS12035-Global8272.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS12035-Global8272\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"12035-Global1120\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/12035-Global1120\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae381e5e-51ed-499d-bf6c-5b953aa146c3" + "4d25455f-bccb-4663-9464-a1a1856c482a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "c0019d5e-fc54-4553-ba2f-f3843aea3c7d" + "13866b52-c1e8-4d23-b3e3-6e7db35d53f4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "e91d9511-4e64-49e5-9399-f9aa79ad20eb" + "3d0a5093-cbbe-4202-88cd-50a83d9bd8bb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225819Z:e91d9511-4e64-49e5-9399-f9aa79ad20eb" + "NORTHEUROPE:20210409T084714Z:3d0a5093-cbbe-4202-88cd-50a83d9bd8bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:18 GMT" + "Fri, 09 Apr 2021 08:47:14 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "147d592f-59ba-4333-aca5-7d9abf9c44aa" + "34b0936e-ed7c-4e52-b08c-306c943f46e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "5ca75404-edd9-4ca0-8843-60f7799aba67" + "9bae382c-5669-48ff-bf8e-e942734481b7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "54" ], "x-ms-correlation-request-id": [ - "e3ab59bd-d7e0-42d3-b79f-2c74e06db4a6" + "1044e17d-1d3e-4744-ae8c-644deab23f61" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225820Z:e3ab59bd-d7e0-42d3-b79f-2c74e06db4a6" + "NORTHEUROPE:20210409T084715Z:1044e17d-1d3e-4744-ae8c-644deab23f61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:19 GMT" + "Fri, 09 Apr 2021 08:47:15 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,32 +249,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RQaXBlQ29ubmVjdGlvbjYxMzk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection5298?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9EaXJlY3RQaXBlQ29ubmVjdGlvbjUyOTg/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"21.194.170.0/31\",\r\n \"sessionPrefixV6\": \"15c2:aa7d:e1e5:b191:8bb9:d83e:7064:8f00/127\",\r\n \"maxPrefixesAdvertisedV4\": 5492,\r\n \"maxPrefixesAdvertisedV6\": 1865,\r\n \"md5AuthenticationKey\": \"3b59caf75fdb77b7c00d7d1c44be70ad\"\r\n },\r\n \"connectionIdentifier\": \"655dd778-76b7-4799-b301-849d2cf94ccd\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/12035-Global1120\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_12035\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "23bf60a2-3009-4c46-988c-be8eb0a10d1d" + "34b0936e-ed7c-4e52-b08c-306c943f46e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1070" + "1072" ] }, "ResponseHeaders": { @@ -285,16 +285,16 @@ "no-cache" ], "x-ms-request-id": [ - "834bc3c7-c373-41a4-9d59-d5d18014befd" + "c0cafe73-6c5c-4fed-a237-3b9489d4ffd1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "55" ], "x-ms-correlation-request-id": [ - "1473681e-cd0a-4dff-9ba7-1c4ca32c47ec" + "e067144c-51d3-42f1-8667-e1d5a8de26a2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225823Z:1473681e-cd0a-4dff-9ba7-1c4ca32c47ec" + "NORTHEUROPE:20210409T084719Z:e067144c-51d3-42f1-8667-e1d5a8de26a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:22 GMT" + "Fri, 09 Apr 2021 08:47:18 GMT" ], "Content-Length": [ - "1939" + "1894" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,24 +315,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"e576e508-8a0f-4181-8042-c27172c3b250\",\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"21.194.170.0/31\",\r\n \"sessionPrefixV6\": \"15c2:aa7d:e1e5:b191:8bb9:d83e:7064:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"21.194.170.1\",\r\n \"microsoftSessionIPv6Address\": \"15c2:aa7d:e1e5:b191:8bb9:d83e:7064:8f01\",\r\n \"peerSessionIPv4Address\": \"21.194.170.0\",\r\n \"peerSessionIPv6Address\": \"15c2:aa7d:e1e5:b191:8bb9:d83e:7064:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5492,\r\n \"maxPrefixesAdvertisedV6\": 1865,\r\n \"md5AuthenticationKey\": \"3b59caf75fdb77b7c00d7d1c44be70ad\"\r\n },\r\n \"connectionIdentifier\": \"655dd778-76b7-4799-b301-849d2cf94ccd\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/12035-Global1120\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_12035\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection5298\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection5298\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 } ], "Names": { "Test-NewDirectPeeringWithPipe": [ - "25704-Global758", - "AS25704-Global6555", - "DirectPipeConnection6139" + "12035-Global1120", + "AS12035-Global8272", + "DirectPipeConnection5298" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "20000", - "Hash": "3f1e0168512a696f39ba6c8b566efe1d", - "MaxPrefixV4": "18472", - "MaxPrefixV6": "1208", - "sessionv4": "172.91.98.0/31", - "sessionv6": "ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127" + "bandwidth": "40000", + "Hash": "3b59caf75fdb77b7c00d7d1c44be70ad", + "MaxPrefixV4": "5492", + "MaxPrefixV6": "1865", + "sessionv4": "21.194.170.0/31", + "sessionv6": "15c2:aa7d:e1e5:b191:8bb9:d83e:7064:8f00/127" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV4.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV4.json index 47112cf553de..a37c21879964 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV4.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV4.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91569d25-dc82-4c60-bfbe-1a34e2f9df31" + "57fc49ef-a5b0-489c-b118-4d267249515e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "334734f8-114d-4a46-8092-62da09220af1" + "bd71300d-221b-4e3f-81b5-8d0d9b6fa0ce" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "0d02ff00-01ea-47ee-98fc-4ff86cab2552" + "a5370d48-e504-4833-8a2a-ec5fc64e65eb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212407Z:0d02ff00-01ea-47ee-98fc-4ff86cab2552" + "NORTHEUROPE:20210409T082742Z:a5370d48-e504-4833-8a2a-ec5fc64e65eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:24:07 GMT" + "Fri, 09 Apr 2021 08:27:42 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,14 +57,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "0e1a2752b75994c854f15a66546a194a", - "MaxPrefixV4": "201" + "Hash": "0da69daec9774c98297143d64ccd991b", + "MaxPrefixV4": "11747" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV4V6.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV4V6.json index ff463e8f9c63..e1eeae705c1b 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV4V6.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV4V6.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18036319-9dd8-4bdf-aff3-f65d1fc7f6d0" + "43a104ca-a1f2-43bf-bf8e-b7139729c957" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "47fa9f24-89c2-4aba-acf4-c2fc411ef380" + "10541174-401d-4a34-8f83-f887efa6bfd9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "8919cb2a-7da0-4d67-95ec-2b7983b0db4b" + "a981fef2-5ceb-4540-93aa-f52d0fdc6930" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212343Z:8919cb2a-7da0-4d67-95ec-2b7983b0db4b" + "NORTHEUROPE:20210409T082656Z:a981fef2-5ceb-4540-93aa-f52d0fdc6930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:23:42 GMT" + "Fri, 09 Apr 2021 08:26:55 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,15 +57,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "5a278b68aceb94966d7bd8461bee1cb3", - "MaxPrefixV4": "17602", - "MaxPrefixV6": "736" + "Hash": "62f6bbb0d43996e2c8fb040d3b41462e", + "MaxPrefixV4": "11162", + "MaxPrefixV6": "198" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV6.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV6.json index a097c3be493a..66f77a6526a8 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV6.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangeConnectionTests/TestNewExchangeConnectionV6.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17fe46de-04e0-4ad7-a402-f57230289780" + "891c44b0-fc76-4911-becf-cc5244abe0ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "e4e8ceba-1f24-465a-bb20-9be54a1e5e31" + "e7eaa2aa-6c99-46df-9a1a-509958a07f82" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "9bf1fc9e-7ce3-4c72-93e8-70dfc8b363e4" + "00ba7e16-d313-4983-b95c-7aa183b463ba" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212431Z:9bf1fc9e-7ce3-4c72-93e8-70dfc8b363e4" + "NORTHEUROPE:20210409T082826Z:00ba7e16-d313-4983-b95c-7aa183b463ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:24:30 GMT" + "Fri, 09 Apr 2021 08:28:26 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,14 +57,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "21bdbd72778c4b64565097b10e26bdac", - "MaxPrefixV6": "1340" + "Hash": "c764c61b07dbc80701ab97ce5d81fb36", + "MaxPrefixV6": "1967" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangePeeringTests/TestNewExchangePeering.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangePeeringTests/TestNewExchangePeering.json index 58664d6cc3c5..f99ba789449b 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangePeeringTests/TestNewExchangePeering.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangePeeringTests/TestNewExchangePeering.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24452-Global1727?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDQ1Mi1HbG9iYWwxNzI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7460-Global9381?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy83NDYwLUdsb2JhbDkzODE/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24452,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24452-Global4676.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24452-Global4676.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24452-Global4676\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 7460,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS7460-Global9765.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS7460-Global9765.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS7460-Global9765\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "54327786-ffb8-4ee4-ad48-536d07f7b6d2" + "fc16111a-15f7-456c-b532-998ba5198348" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "382" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "7e884d39-872a-4a7d-aa95-3aa90389d508" + "311357e0-810f-4674-92f0-fe22bdc93e9d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "9e1ac613-0a1a-4ca8-87fe-3b5c43a7ef93" + "ec5f2d0f-2676-4a38-9f43-35e4128e1a00" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213016Z:9e1ac613-0a1a-4ca8-87fe-3b5c43a7ef93" + "NORTHEUROPE:20210409T082546Z:ec5f2d0f-2676-4a38-9f43-35e4128e1a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:16 GMT" + "Fri, 09 Apr 2021 08:25:46 GMT" ], "Content-Length": [ - "611" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24452,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24452-Global4676.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24452-Global4676.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24452-Global4676\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"24452-Global1727\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24452-Global1727\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 7460,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS7460-Global9765.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS7460-Global9765.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS7460-Global9765\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"7460-Global9381\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7460-Global9381\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24452-Global1727?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDQ1Mi1HbG9iYWwxNzI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7460-Global9381?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy83NDYwLUdsb2JhbDkzODE/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24452,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24452-Global4676.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24452-Global4676.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24452-Global4676\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 7460,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS7460-Global9765.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS7460-Global9765.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS7460-Global9765\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "74a571d5-9961-46d8-b96d-85a167d18377" + "b73e7574-ee38-4e8f-8778-b6cc52390ff4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "418" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "39541ec1-f828-4660-8e19-a3ab909881b1" + "56064488-7aa8-4a83-892f-7c9fa65645b8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "0c12a5d0-cb39-434b-8050-bcf2edae45fc" + "b8fd9cef-f8bd-47d9-ad3f-41c09b934f39" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213018Z:0c12a5d0-cb39-434b-8050-bcf2edae45fc" + "NORTHEUROPE:20210409T082548Z:b8fd9cef-f8bd-47d9-ad3f-41c09b934f39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:18 GMT" + "Fri, 09 Apr 2021 08:25:48 GMT" ], "Content-Length": [ - "612" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 24452,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS24452-Global4676.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS24452-Global4676.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS24452-Global4676\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"24452-Global1727\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24452-Global1727\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 7460,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS7460-Global9765.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS7460-Global9765.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS7460-Global9765\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"7460-Global9381\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7460-Global9381\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23bce734-66f0-4a6a-8881-5c2fad9fd687" + "88b147e6-610f-4732-98f0-f2a99ec54633" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "5c8fe87d-9cbe-44c9-9171-4cf3ab33b30f" + "c1b3a8b0-aac3-4628-83aa-0d35230bfd51" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "57" ], "x-ms-correlation-request-id": [ - "f79d0cc1-9655-48e9-9ecc-4fbd157c14d0" + "9ca9599e-3d92-4a25-9cad-a782ebbbb515" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213021Z:f79d0cc1-9655-48e9-9ecc-4fbd157c14d0" + "NORTHEUROPE:20210409T082551Z:9ca9599e-3d92-4a25-9cad-a782ebbbb515" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:20 GMT" + "Fri, 09 Apr 2021 08:25:50 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c411800a-1a83-4c7f-8783-5d336f8dfd01" + "a1a7f8bc-e5f1-4dbf-be97-eaaf65ab99fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "1e6fbebc-da9a-48e2-accf-bed85a0e4fc1" + "83b1b3ed-b3b4-47f5-82e2-394319c93535" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "56" ], "x-ms-correlation-request-id": [ - "4c446acf-3890-4512-8544-4c6c5b36c94b" + "830f2955-4d34-4a5c-aae5-ff4b3c9a5d40" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213022Z:4c446acf-3890-4512-8544-4c6c5b36c94b" + "NORTHEUROPE:20210409T082553Z:830f2955-4d34-4a5c-aae5-ff4b3c9a5d40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:22 GMT" + "Fri, 09 Apr 2021 08:25:53 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,32 +249,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8023?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9OZXdFeGNoYW5nZVBlZXJpbmdDVlM4MDIzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS5489?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9OZXdFeGNoYW5nZVBlZXJpbmdDVlM1NDg5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 11,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"198.32.134.185\",\r\n \"peerSessionIPv6Address\": \"2001:504:12::36\",\r\n \"maxPrefixesAdvertisedV4\": 7731,\r\n \"maxPrefixesAdvertisedV6\": 1816,\r\n \"md5AuthenticationKey\": \"6920e4d579d2faa430da18c0ef29a767\"\r\n },\r\n \"connectionIdentifier\": \"b69ba778-d9d2-4cf5-81fe-d5e44fbb56ab\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 11,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"198.32.134.215\",\r\n \"peerSessionIPv6Address\": \"2001:504:12::54\",\r\n \"maxPrefixesAdvertisedV4\": 7731,\r\n \"maxPrefixesAdvertisedV6\": 1816,\r\n \"md5AuthenticationKey\": \"6920e4d579d2faa430da18c0ef29a767\"\r\n },\r\n \"connectionIdentifier\": \"402c5c66-7ade-48e2-9149-b451559570d2\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24452-Global1727\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_24452\": \"Active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"206.53.170.61\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::3d\",\r\n \"maxPrefixesAdvertisedV4\": 1551,\r\n \"maxPrefixesAdvertisedV6\": 1192,\r\n \"md5AuthenticationKey\": \"76ecb39ebd17c1d67d5c246b60e0afbf\"\r\n },\r\n \"connectionIdentifier\": \"e6794060-e6a2-4bca-96cf-478112eb8d62\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"206.53.170.59\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::3b\",\r\n \"maxPrefixesAdvertisedV4\": 1551,\r\n \"maxPrefixesAdvertisedV6\": 1192,\r\n \"md5AuthenticationKey\": \"76ecb39ebd17c1d67d5c246b60e0afbf\"\r\n },\r\n \"connectionIdentifier\": \"6e104f1f-d893-4a20-aa8b-dc6387e838e7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7460-Global9381\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_7460\": \"Active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0a2ce797-f9f7-48c8-8f6a-0fd0f432bdcb" + "a1a7f8bc-e5f1-4dbf-be97-eaaf65ab99fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1358" + "1362" ] }, "ResponseHeaders": { @@ -285,16 +285,16 @@ "no-cache" ], "x-ms-request-id": [ - "943886e1-e73c-4984-8343-0f4ee9e269e6" + "22fe2c91-b897-4685-aa37-e89a91cbc8e3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "56" ], "x-ms-correlation-request-id": [ - "4193b342-3f52-427f-a782-db661eabb8b3" + "7506ee41-97fa-4e33-84ed-364b0d4eca07" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213025Z:4193b342-3f52-427f-a782-db661eabb8b3" + "NORTHEUROPE:20210409T082559Z:7506ee41-97fa-4e33-84ed-364b0d4eca07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:25 GMT" + "Fri, 09 Apr 2021 08:25:58 GMT" ], "Content-Length": [ - "2463" + "3490" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,26 +315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"198.32.134.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:12::/64\",\r\n \"microsoftSessionIPv4Address\": \"198.32.134.152\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:12::15\",\r\n \"peerSessionIPv4Address\": \"198.32.134.185\",\r\n \"peerSessionIPv6Address\": \"2001:504:12::36\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7731,\r\n \"maxPrefixesAdvertisedV6\": 1816,\r\n \"md5AuthenticationKey\": \"6920e4d579d2faa430da18c0ef29a767\"\r\n },\r\n \"connectionIdentifier\": \"b69ba778-d9d2-4cf5-81fe-d5e44fbb56ab\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"198.32.134.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:12::/64\",\r\n \"microsoftSessionIPv4Address\": \"198.32.134.152\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:12::15\",\r\n \"peerSessionIPv4Address\": \"198.32.134.215\",\r\n \"peerSessionIPv6Address\": \"2001:504:12::54\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7731,\r\n \"maxPrefixesAdvertisedV6\": 1816,\r\n \"md5AuthenticationKey\": \"6920e4d579d2faa430da18c0ef29a767\"\r\n },\r\n \"connectionIdentifier\": \"402c5c66-7ade-48e2-9149-b451559570d2\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24452-Global1727\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_24452\": \"Active\"\r\n },\r\n \"eTag\": \"f33b50e0-b022-4e00-af39-0a743658d963\",\r\n \"name\": \"NewExchangePeeringCVS8023\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8023\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::3d\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1192,\r\n \"md5AuthenticationKey\": \"76ecb39ebd17c1d67d5c246b60e0afbf\"\r\n },\r\n \"connectionIdentifier\": \"c6bf3eb2-34a0-4330-9ab5-8bb7585723ac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.61\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1551,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"76ecb39ebd17c1d67d5c246b60e0afbf\"\r\n },\r\n \"connectionIdentifier\": \"e6794060-e6a2-4bca-96cf-478112eb8d62\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::3b\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1192,\r\n \"md5AuthenticationKey\": \"76ecb39ebd17c1d67d5c246b60e0afbf\"\r\n },\r\n \"connectionIdentifier\": \"9a3adfa2-f194-45ba-a2c2-8707e0bedd3d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.59\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1551,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"76ecb39ebd17c1d67d5c246b60e0afbf\"\r\n },\r\n \"connectionIdentifier\": \"6e104f1f-d893-4a20-aa8b-dc6387e838e7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7460-Global9381\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_7460\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS5489\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS5489\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/24452-Global1727?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNDQ1Mi1HbG9iYWwxNzI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/7460-Global9381?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy83NDYwLUdsb2JhbDkzODE/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "970f6359-4344-497a-943b-8732315e7e8a" + "1a6d6f8a-0fdf-4c29-8e8f-00ece057a81f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -345,16 +345,16 @@ "no-cache" ], "x-ms-request-id": [ - "535e6135-abab-40bd-b866-e693ae43ef48" + "f656ca2b-fe0b-4ea1-831a-be10e1961458" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "eff38320-cf62-4f35-af25-72e19491ec84" + "7ddc2c29-ae08-4b6d-9076-719ade5d1418" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213026Z:eff38320-cf62-4f35-af25-72e19491ec84" + "NORTHEUROPE:20210409T082559Z:7ddc2c29-ae08-4b6d-9076-719ade5d1418" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:25 GMT" + "Fri, 09 Apr 2021 08:25:59 GMT" ], "Expires": [ "-1" @@ -378,15 +378,15 @@ ], "Names": { "Test-NewExchangePeering": [ - "NewExchangePeeringCVS8023", - "24452-Global1727", - "AS24452-Global4676" + "NewExchangePeeringCVS5489", + "7460-Global9381", + "AS7460-Global9765" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "6920e4d579d2faa430da18c0ef29a767", - "MaxPrefixV4": "7731", - "MaxPrefixV6": "1816" + "Hash": "76ecb39ebd17c1d67d5c246b60e0afbf", + "MaxPrefixV4": "1551", + "MaxPrefixV6": "1192" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangePeeringTests/TestNewExchangePeeringPipe.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangePeeringTests/TestNewExchangePeeringPipe.json index cbdc2fc82d76..f3b76c69dee8 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangePeeringTests/TestNewExchangePeeringPipe.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.CreateNewExchangePeeringTests/TestNewExchangePeeringPipe.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e62f25ab-f384-4bea-bbbc-61661ee8f292" + "5411e172-bd32-46ef-9858-1022ea8ab7be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "1eee68d3-0bd9-4aa4-b03a-da62fef4e379" + "fce348c1-b597-4cd0-bc39-c0dcb5afc878" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "70f66b85-a422-4601-ac68-0973dd0ebe38" + "9cf3c06f-9734-4420-bc37-f28c1f42e1ea" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212948Z:70f66b85-a422-4601-ac68-0973dd0ebe38" + "NORTHEUROPE:20210409T082229Z:9cf3c06f-9734-4420-bc37-f28c1f42e1ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:29:48 GMT" + "Fri, 09 Apr 2021 08:22:28 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,32 +57,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11874-Global5778?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMTg3NC1HbG9iYWw1Nzc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16038-Global9020?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNjAzOC1HbG9iYWw5MDIwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 11874,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS11874-Global5192.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS11874-Global5192.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS11874-Global5192\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 16038,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16038-Global439.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16038-Global439.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16038-Global439\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1510a071-4167-4276-b24b-f6b7d6bf5fd5" + "27618e6a-cc3d-4935-837d-708638230615" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "383" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-request-id": [ - "36d0f035-0d3e-4836-bba9-24e008afacbd" + "f73d4b82-9628-4d32-95b3-c248803a1477" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "57" ], "x-ms-correlation-request-id": [ - "9fa73e68-3e15-4020-836a-ed2fd9cd8c05" + "bdb53ec9-bc0a-458e-a839-efaf871708ba" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212949Z:9fa73e68-3e15-4020-836a-ed2fd9cd8c05" + "NORTHEUROPE:20210409T082230Z:bdb53ec9-bc0a-458e-a839-efaf871708ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:29:48 GMT" + "Fri, 09 Apr 2021 08:22:30 GMT" ], "Content-Length": [ - "611" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 11874,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS11874-Global5192.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS11874-Global5192.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS11874-Global5192\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"11874-Global5778\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11874-Global5778\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 16038,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16038-Global439.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16038-Global439.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16038-Global439\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"16038-Global9020\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16038-Global9020\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11874-Global5778?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMTg3NC1HbG9iYWw1Nzc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16038-Global9020?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNjAzOC1HbG9iYWw5MDIwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 11874,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS11874-Global5192.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS11874-Global5192.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS11874-Global5192\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 16038,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16038-Global439.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16038-Global439.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16038-Global439\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "96709767-7f43-4e13-a280-4c2a0b543b4c" + "fc1594b7-74ec-4d4a-bf59-eeb7044de084" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "419" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "4e03f476-602d-4fd3-adda-41202cb6b329" + "114e1404-b914-40ce-8bca-e8bad8c6995b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "56" ], "x-ms-correlation-request-id": [ - "c0376fab-1e30-4858-b5dd-4a7683ec9186" + "da256461-6822-41f3-b25a-f7e3ce012748" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212951Z:c0376fab-1e30-4858-b5dd-4a7683ec9186" + "NORTHEUROPE:20210409T082232Z:da256461-6822-41f3-b25a-f7e3ce012748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:29:50 GMT" + "Fri, 09 Apr 2021 08:22:31 GMT" ], "Content-Length": [ - "612" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 11874,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS11874-Global5192.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS11874-Global5192.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS11874-Global5192\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"11874-Global5778\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11874-Global5778\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 16038,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16038-Global439.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16038-Global439.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16038-Global439\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"16038-Global9020\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16038-Global9020\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11874-Global5778?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMTg3NC1HbG9iYWw1Nzc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16038-Global9020?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNjAzOC1HbG9iYWw5MDIwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19e6c9e6-116e-444e-85bc-cd825ce5e403" + "b636a4e4-e6bf-4a11-b9b5-ec96d1f3bca9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "ea9f243d-d715-4f72-86e5-ee3c0065532b" + "ce7290db-c0e9-48b3-9663-6fcda8617609" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "563a137f-79b4-4c21-9241-96dae197eeb4" + "3f13c692-bc04-4504-b2f1-6065e614c0f9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212953Z:563a137f-79b4-4c21-9241-96dae197eeb4" + "NORTHEUROPE:20210409T082234Z:3f13c692-bc04-4504-b2f1-6065e614c0f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:29:53 GMT" + "Fri, 09 Apr 2021 08:22:33 GMT" ], "Expires": [ "-1" @@ -252,13 +252,13 @@ ], "Names": { "Test-NewExchangePeeringPipe": [ - "NewExchangePeeringCVS7886", - "11874-Global5778", - "AS11874-Global5192" + "NewExchangePeeringCVS5462", + "16038-Global9020", + "AS16038-Global439" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "ef594d4708e11cfbee093c1887fee6f9" + "Hash": "d27d95a571642832021199a971262bf7" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetCdnPeeringPrefixTests/TestGetCdnPeeringPrefixForLocation.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetCdnPeeringPrefixTests/TestGetCdnPeeringPrefixForLocation.json new file mode 100644 index 000000000000..887b7720ccc6 --- /dev/null +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetCdnPeeringPrefixTests/TestGetCdnPeeringPrefixForLocation.json @@ -0,0 +1,68 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/cdnPeeringPrefixes?peeringLocation=Seattle&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9jZG5QZWVyaW5nUHJlZml4ZXM/cGVlcmluZ0xvY2F0aW9uPVNlYXR0bGUmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e26ec2d6-1fcc-4de6-920a-bfee0548479f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d928aa06-eafb-433e-9d5b-851295fc5cb4" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "59" + ], + "x-ms-correlation-request-id": [ + "2d37c61d-a9a2-4b81-aa82-33918484c864" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T075759Z:2d37c61d-a9a2-4b81-aa82-33918484c864" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 07:57:59 GMT" + ], + "Content-Length": [ + "1904" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"prefix\": \"20.47.120.0/23\",\r\n \"azureRegion\": \"West US 2\",\r\n \"azureService\": \"AzureCompute\",\r\n \"isPrimaryRegion\": true,\r\n \"bgpCommunity\": \"8069:51026\"\r\n },\r\n \"name\": \"CdnPrefix_20_47_120_0_23\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/cdnPeeringPrefixes/CdnPrefix_20_47_120_0_23\",\r\n \"type\": \"Microsoft.Peering/cdnPeeringPrefixes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"prefix\": \"20.47.62.0/23\",\r\n \"azureRegion\": \"West US 2\",\r\n \"azureService\": \"AzureStorage\",\r\n \"isPrimaryRegion\": true,\r\n \"bgpCommunity\": \"8069:52026\"\r\n },\r\n \"name\": \"CdnPrefix_20_47_62_0_23\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/cdnPeeringPrefixes/CdnPrefix_20_47_62_0_23\",\r\n \"type\": \"Microsoft.Peering/cdnPeeringPrefixes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"prefix\": \"20.47.120.0/23\",\r\n \"azureRegion\": \"West US 2\",\r\n \"azureService\": \"AzureCompute\",\r\n \"isPrimaryRegion\": true,\r\n \"bgpCommunity\": \"8069:51026\"\r\n },\r\n \"name\": \"CdnPrefix_20_47_120_0_23\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/cdnPeeringPrefixes/CdnPrefix_20_47_120_0_23\",\r\n \"type\": \"Microsoft.Peering/cdnPeeringPrefixes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"prefix\": \"20.47.62.0/23\",\r\n \"azureRegion\": \"West US 2\",\r\n \"azureService\": \"AzureStorage\",\r\n \"isPrimaryRegion\": true,\r\n \"bgpCommunity\": \"8069:52026\"\r\n },\r\n \"name\": \"CdnPrefix_20_47_62_0_23\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/cdnPeeringPrefixes/CdnPrefix_20_47_62_0_23\",\r\n \"type\": \"Microsoft.Peering/cdnPeeringPrefixes\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239" + } +} \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetCdnPeeringPrefixTests/TestGetCdnPeeringPrefixNonExistentLocation.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetCdnPeeringPrefixTests/TestGetCdnPeeringPrefixNonExistentLocation.json new file mode 100644 index 000000000000..729275ffa441 --- /dev/null +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetCdnPeeringPrefixTests/TestGetCdnPeeringPrefixNonExistentLocation.json @@ -0,0 +1,68 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/cdnPeeringPrefixes?peeringLocation=abcde&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9jZG5QZWVyaW5nUHJlZml4ZXM/cGVlcmluZ0xvY2F0aW9uPWFiY2RlJmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cafb57f-3658-471b-8df7-ad387f192635" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a063cd5d-9163-43ae-be15-b75a66824d65" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "59" + ], + "x-ms-correlation-request-id": [ + "fd5dc1cf-e27f-45cb-8800-1908ab554fa0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T075717Z:fd5dc1cf-e27f-45cb-8800-1908ab554fa0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 07:57:16 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239" + } +} \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLegacyTests/TestGetLegacyKindDirectAmsterdam.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLegacyTests/TestGetLegacyKindDirectAmsterdam.json index b976e4e613fa..67033ba0aa33 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLegacyTests/TestGetLegacyKindDirectAmsterdam.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLegacyTests/TestGetLegacyKindDirectAmsterdam.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global9172?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDk0MC1HbG9iYWw5MTcyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global5095?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDk0MC1HbG9iYWw1MDk1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20940,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20940-Global8219.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20940-Global8219.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20940-Global8219\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20940,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20940-Global766.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20940-Global766.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20940-Global766\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "47ede472-651d-46bd-9514-331d4efd44d3" + "c3fcd48a-3f08-4ce7-8a74-1d91747a55a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "383" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "d6897429-013d-4fc2-b7f9-5f43991298e2" + "f7b1304e-f8df-4783-98eb-2ff76891df65" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "0d36d0e0-a4f3-4a7a-96d6-65f748ed7e83" + "715990c6-9455-40b3-a333-902c0754354c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212521Z:0d36d0e0-a4f3-4a7a-96d6-65f748ed7e83" + "NORTHEUROPE:20210409T081234Z:715990c6-9455-40b3-a333-902c0754354c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:21 GMT" + "Fri, 09 Apr 2021 08:12:34 GMT" ], "Content-Length": [ - "611" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20940,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20940-Global8219.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20940-Global8219.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20940-Global8219\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"20940-Global9172\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global9172\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20940,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20940-Global766.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20940-Global766.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20940-Global766\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"20940-Global5095\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global5095\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global9172?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDk0MC1HbG9iYWw5MTcyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global5095?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDk0MC1HbG9iYWw1MDk1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20940,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20940-Global8219.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20940-Global8219.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20940-Global8219\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20940,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20940-Global766.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20940-Global766.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20940-Global766\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "80f2cd7f-d801-45bb-a4ea-3527cb65d037" + "75a96291-cbf8-4de5-be77-7d6e5663572f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "419" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "2ef26f27-8325-4695-9e02-a64cc4a4fa55" + "7309e746-a758-43a6-81d3-80b9be9cabfb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "0d98f5df-05da-480d-bf4f-53a67abc0c83" + "bd7dceef-592f-46b4-bc63-94243b073674" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212523Z:0d98f5df-05da-480d-bf4f-53a67abc0c83" + "NORTHEUROPE:20210409T081236Z:bd7dceef-592f-46b4-bc63-94243b073674" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:23 GMT" + "Fri, 09 Apr 2021 08:12:36 GMT" ], "Content-Length": [ - "612" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20940,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20940-Global8219.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20940-Global8219.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20940-Global8219\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"20940-Global9172\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global9172\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20940,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20940-Global766.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20940-Global766.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20940-Global766\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"20940-Global5095\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global5095\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/legacyPeerings?peeringLocation=Amsterdam&kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9sZWdhY3lQZWVyaW5ncz9wZWVyaW5nTG9jYXRpb249QW1zdGVyZGFtJmtpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/legacyPeerings?peeringLocation=Amsterdam&kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9sZWdhY3lQZWVyaW5ncz9wZWVyaW5nTG9jYXRpb249QW1zdGVyZGFtJmtpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a5d317d-1242-4a8e-8cb8-307191525dfb" + "996ea842-5d1c-4aaa-8c5d-0aa9ba1376ed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "989644f9-87da-4924-8552-0f051c84891b" + "2a156afc-c118-4e3e-8922-1c1d41253493" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "8e8076b4-277a-4349-9a12-2d5b102ef8a1" + "aa7a72f1-0299-461b-a729-a96927495390" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212525Z:8e8076b4-277a-4349-9a12-2d5b102ef8a1" + "NORTHEUROPE:20210409T081238Z:aa7a72f1-0299-461b-a729-a96927495390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:25 GMT" + "Fri, 09 Apr 2021 08:12:38 GMT" ], "Content-Length": [ - "8691" + "11964" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"198.200.130.224/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::1064/126\",\r\n \"microsoftSessionIPv4Address\": \"198.200.130.224\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::1065\",\r\n \"peerSessionIPv4Address\": \"198.200.130.225\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::1066\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d520032f-7e52-437b-91c5-730b699541f0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"198.200.130.222/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::1060/126\",\r\n \"microsoftSessionIPv4Address\": \"198.200.130.222\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::1061\",\r\n \"peerSessionIPv4Address\": \"198.200.130.223\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::1062\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e1f85ea6-68d7-4430-9f37-702e7c7cde51\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 40000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"207.46.36.72/30\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::a3c/126\",\r\n \"microsoftSessionIPv4Address\": \"207.46.36.73\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::a3d\",\r\n \"peerSessionIPv4Address\": \"207.46.36.74\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::a3e\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7eb34c1c-cbb4-4a9d-916a-672568b21a98\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 40000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.110.120/30\",\r\n \"sessionPrefixV6\": \"2001:1900:5:3::378/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.110.122\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:5:3::37a\",\r\n \"peerSessionIPv4Address\": \"4.68.110.121\",\r\n \"peerSessionIPv6Address\": \"2001:1900:5:3::379\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"867ec20b-d454-4412-87ab-3852acc9d1ff\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.39.152/30\",\r\n \"sessionPrefixV6\": \"2001:1900:5:3::344/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.39.154\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:5:3::346\",\r\n \"peerSessionIPv4Address\": \"4.68.39.153\",\r\n \"peerSessionIPv6Address\": \"2001:1900:5:3::345\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"14d49305-60dc-4415-8fa8-c6a32dfc9a3f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"3356\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.13.90/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::f24/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.13.90\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::f25\",\r\n \"peerSessionIPv4Address\": \"104.44.13.91\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::f26\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"cfdae510-3016-4b68-849e-a68e98b60f74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.15.154/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::10a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.15.154\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::10a5\",\r\n \"peerSessionIPv4Address\": \"104.44.15.155\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::10a6\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8510de44-7771-43e8-8883-5de96db03497\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"20940\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"198.200.130.224/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::1064/126\",\r\n \"microsoftSessionIPv4Address\": \"198.200.130.224\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::1065\",\r\n \"peerSessionIPv4Address\": \"198.200.130.225\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::1066\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"86b8af4a-ec8d-4513-8cb3-8f9342b6d819\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"198.200.130.222/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::1060/126\",\r\n \"microsoftSessionIPv4Address\": \"198.200.130.222\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::1061\",\r\n \"peerSessionIPv4Address\": \"198.200.130.223\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::1062\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8ca497ff-6cbe-4da1-bd77-cee234246008\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"West Europe\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 40000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.110.120/30\",\r\n \"sessionPrefixV6\": \"2001:1900:5:3::378/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.110.122\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:5:3::37a\",\r\n \"peerSessionIPv4Address\": \"4.68.110.121\",\r\n \"peerSessionIPv6Address\": \"2001:1900:5:3::379\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9503fc28-02a8-4844-a73f-167628096e98\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.186/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2acc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.187\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2ace\",\r\n \"peerSessionIPv4Address\": \"104.44.197.186\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2acd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"75f46416-8c8b-4e0a-8d50-e3eccf78eec1\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.39.152/30\",\r\n \"sessionPrefixV6\": \"2001:1900:5:3::344/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.39.154\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:5:3::346\",\r\n \"peerSessionIPv4Address\": \"4.68.39.153\",\r\n \"peerSessionIPv6Address\": \"2001:1900:5:3::345\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"578b367d-a7ac-437c-a5ee-40464177bad9\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"3356\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"West Europe\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.195.104.208/31\",\r\n \"sessionPrefixV6\": \"2606:2800:50a8:f:8000::20/126\",\r\n \"microsoftSessionIPv4Address\": \"152.195.104.209\",\r\n \"microsoftSessionIPv6Address\": \"2606:2800:50a8:f:8000::22\",\r\n \"peerSessionIPv4Address\": \"152.195.104.208\",\r\n \"peerSessionIPv6Address\": \"2606:2800:50a8:f:8000::21\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"108c8ae7-d3fa-4187-82d9-28729d84a641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"15133\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"West Europe\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 40000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"195.22.213.118/31\",\r\n \"sessionPrefixV6\": \"2001:41a8:100:2::ec/126\",\r\n \"microsoftSessionIPv4Address\": \"195.22.213.119\",\r\n \"microsoftSessionIPv6Address\": \"2001:41a8:100:2::ee\",\r\n \"peerSessionIPv4Address\": \"195.22.213.118\",\r\n \"peerSessionIPv6Address\": \"2001:41a8:100:2::ed\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b4c419c2-9540-4536-9674-07ea664fb45e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"West Europe\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.13.90/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::f24/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.13.90\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::f25\",\r\n \"peerSessionIPv4Address\": \"104.44.13.91\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::f26\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"df7d56a5-7f9f-43ed-81b7-4e6ed82d40f7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 0,\r\n \"provisionedBandwidthInMbps\": 100000,\r\n \"sessionAddressProvider\": \"Default\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.15.154/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::10a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.15.154\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::10a5\",\r\n \"peerSessionIPv4Address\": \"104.44.15.155\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::10a6\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"948d0c08-eb22-4229-9cce-68020eb33b58\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"20940\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"West Europe\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global9172?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDk0MC1HbG9iYWw5MTcyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20940-Global5095?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDk0MC1HbG9iYWw1MDk1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3231c557-7370-404a-90b8-3a68deff35b6" + "01b02488-4f69-4ffc-8a99-13842b50aa5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "98dd1114-9b88-487e-95b4-fc98e2ebeef4" + "74086444-378d-4d25-9617-ba16c1a0a87c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "f3929016-81b3-46c0-9e6b-9c121d39c30a" + "86725cfd-ce5b-4243-95fe-1b06076aa37a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212526Z:f3929016-81b3-46c0-9e6b-9c121d39c30a" + "NORTHEUROPE:20210409T081239Z:86725cfd-ce5b-4243-95fe-1b06076aa37a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:25 GMT" + "Fri, 09 Apr 2021 08:12:39 GMT" ], "Expires": [ "-1" @@ -252,8 +252,8 @@ ], "Names": { "Test-GetLegacyKindDirectAmsterdam": [ - "20940-Global9172", - "AS20940-Global8219" + "20940-Global5095", + "AS20940-Global766" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLegacyTests/TestGetLegacyKindExchangeAshburn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLegacyTests/TestGetLegacyKindExchangeAshburn.json index c9d937ad5de7..19ef4c31ffd5 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLegacyTests/TestGetLegacyKindExchangeAshburn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLegacyTests/TestGetLegacyKindExchangeAshburn.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6459?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTIyNC1HbG9iYWw2NDU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6280?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTIyNC1HbG9iYWw2MjgwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15224,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15224-Global898.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15224-Global898.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15224-Global898\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15224,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15224-Global2401.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15224-Global2401.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15224-Global2401\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b6a8ac0a-4069-4d54-8c45-3666f91645fe" + "ffa90222-43ad-4f02-91d8-11e17a87ae0f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "383" + "386" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "f26ca60e-0a7c-4f47-835d-e5d6db37ca5a" + "9a3fd7fa-8236-4e4d-ad6a-1d4cf01e8ef7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "55" + "53" ], "x-ms-correlation-request-id": [ - "461233c2-af62-46d6-b6c7-a93796b2f8f8" + "882b35d5-ba75-4be9-9d7c-a72be2d1424d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212454Z:461233c2-af62-46d6-b6c7-a93796b2f8f8" + "NORTHEUROPE:20210409T081148Z:882b35d5-ba75-4be9-9d7c-a72be2d1424d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:24:53 GMT" + "Fri, 09 Apr 2021 08:11:47 GMT" ], "Content-Length": [ - "608" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15224,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15224-Global898.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15224-Global898.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15224-Global898\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"15224-Global6459\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6459\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15224,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15224-Global2401.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15224-Global2401.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15224-Global2401\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"15224-Global6280\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6280\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6459?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTIyNC1HbG9iYWw2NDU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6280?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTIyNC1HbG9iYWw2MjgwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15224,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15224-Global898.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15224-Global898.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15224-Global898\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15224,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15224-Global2401.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15224-Global2401.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15224-Global2401\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "531b4989-3a5d-4a36-aa12-fe4da73d94f5" + "572e8170-87d2-4125-a7e7-fb1fa7231a29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "419" + "422" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "70a959a9-dbf3-450b-8f2c-f10256a07d2e" + "4f657c20-cceb-40cf-bb17-08199529908a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "54" + "52" ], "x-ms-correlation-request-id": [ - "dcf6d70a-93ad-4180-970c-eb1669a6e9a2" + "3ca9c06e-aac7-4a1c-ad57-8b6cb2c39d2a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212455Z:dcf6d70a-93ad-4180-970c-eb1669a6e9a2" + "NORTHEUROPE:20210409T081149Z:3ca9c06e-aac7-4a1c-ad57-8b6cb2c39d2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:24:54 GMT" + "Fri, 09 Apr 2021 08:11:49 GMT" ], "Content-Length": [ - "609" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15224,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15224-Global898.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15224-Global898.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15224-Global898\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"15224-Global6459\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6459\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15224,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15224-Global2401.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15224-Global2401.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15224-Global2401\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"15224-Global6280\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6280\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/legacyPeerings?peeringLocation=Ashburn&kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9sZWdhY3lQZWVyaW5ncz9wZWVyaW5nTG9jYXRpb249QXNoYnVybiZraW5kPUV4Y2hhbmdlJmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/legacyPeerings?peeringLocation=Ashburn&kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9sZWdhY3lQZWVyaW5ncz9wZWVyaW5nTG9jYXRpb249QXNoYnVybiZraW5kPUV4Y2hhbmdlJmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ebde03c-f86b-4a7e-a853-e3d52c000440" + "64ccf15f-ac94-4bfa-9c15-83a131902272" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "3c8cebe4-b340-4b96-9be3-e6adeceff125" + "a58f4580-9378-4c33-9500-5467858e941e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "f610035f-4262-4fbe-bfd8-3f0dd3b601ca" + "d9f6a34d-f51d-4650-845c-79331c1ca260" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212457Z:f610035f-4262-4fbe-bfd8-3f0dd3b601ca" + "NORTHEUROPE:20210409T081152Z:d9f6a34d-f51d-4650-845c-79331c1ca260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:24:57 GMT" + "Fri, 09 Apr 2021 08:11:52 GMT" ], "Content-Length": [ - "3768" + "5966" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv4Address\": \"206.126.237.50\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2:0:1:5224:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ee4b37bd-d084-453d-85fd-52cd4f916b3d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv4Address\": \"206.126.237.150\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2:0:1:5224:2\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"511eaac4-bf68-47b9-a6f2-e433beab08e0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv4Address\": \"206.126.237.50\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2:0:1:5224:1\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1d9fd662-65cf-4b5d-b5fa-796dc28463d9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv4Address\": \"206.126.237.150\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2:0:1:5224:2\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"6f9e3ec1-8763-439e-8e46-1dda5a327bd8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"15224\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.237.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ac46e80b-21d6-413b-ad30-5d0992e73c35\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.237.150\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"215f8a60-acd3-4fc8-a0b2-daeecedee20a\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2:0:1:5224:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0cee8914-d3c5-42c7-b5d4-69a165ef040e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2:0:1:5224:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5fcfc64e-c7af-47a6-8d28-cd1a623d7734\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.237.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"6e0b5f4b-1565-440d-8141-3fbeb3bbef7f\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.237.150\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"c9da6910-489b-40fc-8a37-e2b232b577b8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2:0:1:5224:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5fa9d690-a517-40c4-8d4a-0279dc2eea0c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2:0:1:5224:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7ed6ea11-bea5-4907-885e-3771940e91a8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"15224\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"East US\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6459?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTIyNC1HbG9iYWw2NDU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15224-Global6280?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTIyNC1HbG9iYWw2MjgwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d2fbe1b-e028-44dd-bc33-0aefd4b618c5" + "bfec1a05-f6e9-4927-a403-df99dee96a03" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "e149976e-94de-4579-b4c3-9b52c5925f4e" + "e5436446-7327-4185-8315-8c0ff2bf1284" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "167c875c-a007-4315-8332-7b2568ee6917" + "50631239-cf12-49e3-bf25-f0afbb7e28d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212458Z:167c875c-a007-4315-8332-7b2568ee6917" + "NORTHEUROPE:20210409T081152Z:50631239-cf12-49e3-bf25-f0afbb7e28d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:24:58 GMT" + "Fri, 09 Apr 2021 08:11:52 GMT" ], "Expires": [ "-1" @@ -252,8 +252,8 @@ ], "Names": { "Test-GetLegacyKindExchangeAshburn": [ - "15224-Global6459", - "AS15224-Global898" + "15224-Global6280", + "AS15224-Global2401" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirect.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirect.json index fea371e5a766..125b6f12c391 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirect.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirect.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54292-Global9989?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NDI5Mi1HbG9iYWw5OTg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36652-Global7588?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNjY1Mi1HbG9iYWw3NTg4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 54292,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS54292-Global1423\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36652,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36652-Global672\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d2524595-d5d1-47d1-8b23-1ea95bae48fa" + "13284a04-7e5f-4c8f-ab3e-ab7063cbfd6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "383" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "39ed70ad-867f-4be5-bc8c-f9d4bf708830" + "44c57f7a-5c2d-40d7-8646-219255c1d187" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "24835c92-49cb-4af3-a23b-1d3ec93677be" + "a83bb9bd-3072-4fa5-a871-a13ec6931d7b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211940Z:24835c92-49cb-4af3-a23b-1d3ec93677be" + "NORTHEUROPE:20210409T080326Z:a83bb9bd-3072-4fa5-a871-a13ec6931d7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:19:39 GMT" + "Fri, 09 Apr 2021 08:03:26 GMT" ], "Content-Length": [ - "611" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 54292,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS54292-Global1423\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"54292-Global9989\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54292-Global9989\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36652,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36652-Global672\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36652-Global7588\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36652-Global7588\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54292-Global9989?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NDI5Mi1HbG9iYWw5OTg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36652-Global7588?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNjY1Mi1HbG9iYWw3NTg4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 54292,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS54292-Global1423\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36652,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36652-Global672\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bbeb4c47-59ab-41dc-97b0-05b2bb361089" + "ad2bf9bf-507d-45d0-94e4-9ab571982ce9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "419" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "b76a8f5f-06b1-4401-833b-ef7de1c50b61" + "b40a88ad-d5c0-44ce-9b33-4af429601d7d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "a6a3703b-9df0-44e2-96e7-cb6436f323a3" + "2dba7488-c046-4326-b442-52c491e0c292" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211941Z:a6a3703b-9df0-44e2-96e7-cb6436f323a3" + "NORTHEUROPE:20210409T080327Z:2dba7488-c046-4326-b442-52c491e0c292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:19:40 GMT" + "Fri, 09 Apr 2021 08:03:27 GMT" ], "Content-Length": [ - "612" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 54292,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS54292-Global1423\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"54292-Global9989\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54292-Global9989\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 36652,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36652-Global672\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36652-Global7588\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36652-Global7588\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2059322-2b5f-49a0-8432-320e2e15befb" + "941ef487-7ccf-4b15-98cf-a32c30cfd468" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "8c6ad03f-b71a-437d-a0fb-510f129a1e3c" + "456f052c-b5b1-4e3b-b9f3-fe77b5cdd2a4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "9c323353-21e6-4f19-9634-6744fed753ae" + "3b9b6279-0ace-41a1-a0f4-d1813ec8e2e8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211944Z:9c323353-21e6-4f19-9634-6744fed753ae" + "NORTHEUROPE:20210409T080330Z:3b9b6279-0ace-41a1-a0f4-d1813ec8e2e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:19:44 GMT" + "Fri, 09 Apr 2021 08:03:30 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9879456-a9cb-4b26-bb5b-86034ae4f98a" + "3985b721-49fc-4231-acee-62dc812b9750" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "dd746bf6-530e-4e67-b5c7-eac0851882ff" + "4920bf81-54db-404e-9e02-d25223026b5b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "e9e04974-e6e0-48c6-ad0f-79378be5c899" + "3d5f9eb2-98ef-4253-bd56-a0e9c0b00778" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211945Z:e9e04974-e6e0-48c6-ad0f-79378be5c899" + "NORTHEUROPE:20210409T080331Z:3d5f9eb2-98ef-4253-bd56-a0e9c0b00778" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:19:44 GMT" + "Fri, 09 Apr 2021 08:03:30 GMT" ], "Expires": [ "-1" @@ -249,8 +249,8 @@ ], "Names": { "Test-GetLocationKindDirect": [ - "54292-Global9989", - "AS54292-Global1423" + "36652-Global7588", + "AS36652-Global672" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectAmsterdam.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectAmsterdam.json index a01c93aeaa54..b555452d88b8 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectAmsterdam.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectAmsterdam.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62858-Global4971?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82Mjg1OC1HbG9iYWw0OTcxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26069-Global158?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNjA2OS1HbG9iYWwxNTg/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 62858,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS62858-Global1047\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 26069,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26069-Global6639\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "29020126-2e04-4860-b26c-ebaf18fc702c" + "5bced15b-262e-45b8-b5ee-95e21aab7699" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "62173d94-ab1a-4a64-8ce2-f296bd0c93d7" + "42f88a61-c446-4f72-87d3-b545b8bdd3f9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "57" ], "x-ms-correlation-request-id": [ - "7b6cf01a-584d-4a46-a3c4-935fea980388" + "676c29c4-6c5b-445f-bf8c-87e260f773bc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211912Z:7b6cf01a-584d-4a46-a3c4-935fea980388" + "NORTHEUROPE:20210409T080238Z:676c29c4-6c5b-445f-bf8c-87e260f773bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:19:12 GMT" + "Fri, 09 Apr 2021 08:02:38 GMT" ], "Content-Length": [ - "611" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 62858,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS62858-Global1047\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"62858-Global4971\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62858-Global4971\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 26069,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26069-Global6639\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"26069-Global158\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26069-Global158\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62858-Global4971?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82Mjg1OC1HbG9iYWw0OTcxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26069-Global158?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNjA2OS1HbG9iYWwxNTg/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 62858,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS62858-Global1047\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 26069,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26069-Global6639\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "182e165e-388e-4d5a-8ad2-a9c27dc5de21" + "85ad6a44-5bb6-4715-a4b0-747865de0a8b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "6bbac486-6b1a-42e2-8a2e-e21bddea6e39" + "c2b4d7ad-93c3-4373-9d9e-02cc71df1766" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "56" ], "x-ms-correlation-request-id": [ - "e736c95e-e488-48f6-b679-2851afd3c18b" + "3f6b19cc-b5c2-491d-833a-f4c54ac913f4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211913Z:e736c95e-e488-48f6-b679-2851afd3c18b" + "NORTHEUROPE:20210409T080240Z:3f6b19cc-b5c2-491d-833a-f4c54ac913f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:19:13 GMT" + "Fri, 09 Apr 2021 08:02:40 GMT" ], "Content-Length": [ - "612" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 62858,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS62858-Global1047\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"62858-Global4971\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62858-Global4971\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 26069,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26069-Global6639\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"26069-Global158\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26069-Global158\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Cdn&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUNkbiZhcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Cdn&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUNkbiZhcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e58c65f8-ba93-4c06-8331-c8bd119fe58a" + "7e900c54-45a5-408b-983d-6fa75e55d718" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "9a874249-a12d-4eb6-a93c-185e4a479c83" + "a403930e-9870-4e1e-8ce8-22e22ab8a642" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "0d8edd5d-5543-45cc-ad99-8d5c0019eca6" + "d136abd2-6864-4d12-8156-a371b72ba8ba" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211916Z:0d8edd5d-5543-45cc-ad99-8d5c0019eca6" + "NORTHEUROPE:20210409T080242Z:d136abd2-6864-4d12-8156-a371b72ba8ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:19:15 GMT" + "Fri, 09 Apr 2021 08:02:42 GMT" ], "Content-Length": [ - "10870" + "24446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Taubenstrasse 7-9\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 133,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/133\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Cdn\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "881ae2fd-ddd3-4aeb-b776-674c7db8077d" + "54cda11d-e137-4e5c-9799-51bd3065e3d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "33d09f54-3f8f-4744-9995-e491b5c179c6" + "4d50f0bc-0961-4047-a62a-14145e0b4f0b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "409a51cd-2957-4ede-9a3f-e6547b00155f" + "62470143-8583-4bdd-847f-cb065c7f3b95" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211916Z:409a51cd-2957-4ede-9a3f-e6547b00155f" + "NORTHEUROPE:20210409T080243Z:62470143-8583-4bdd-847f-cb065c7f3b95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:19:15 GMT" + "Fri, 09 Apr 2021 08:02:43 GMT" ], "Expires": [ "-1" @@ -249,8 +249,8 @@ ], "Names": { "Test-GetLocationKindDirectAmsterdam": [ - "62858-Global4971", - "AS62858-Global1047" + "26069-Global158", + "AS26069-Global6639" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle.json index 94cbeeb90a88..a314f82f3b08 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30433-Global7451?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMDQzMy1HbG9iYWw3NDUxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57277-Global8023?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NzI3Ny1HbG9iYWw4MDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 30433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30433-Global8134\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 57277,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS57277-Global2297\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c44a7fc8-6d10-46de-be87-c7f5d4a8cb80" + "20cd5a31-8952-4823-b0a7-2b00b82d9390" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "b90ab791-6df8-4cf3-a254-9680f104ae38" + "5ff03714-b66e-4942-b979-2e82fcd39a77" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "f47e2c8b-30a7-4cd4-ac73-ef6fc6dab636" + "1fff776b-f779-4f7f-b710-8e0fe4f37d62" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212037Z:f47e2c8b-30a7-4cd4-ac73-ef6fc6dab636" + "NORTHEUROPE:20210409T080503Z:1fff776b-f779-4f7f-b710-8e0fe4f37d62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:20:37 GMT" + "Fri, 09 Apr 2021 08:05:03 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 30433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30433-Global8134\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"30433-Global7451\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30433-Global7451\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 57277,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS57277-Global2297\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"57277-Global8023\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57277-Global8023\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30433-Global7451?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMDQzMy1HbG9iYWw3NDUxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57277-Global8023?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NzI3Ny1HbG9iYWw4MDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 30433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30433-Global8134\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 57277,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS57277-Global2297\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14a22d77-6f4b-450a-a65b-0faec6986ab4" + "ba55e7b0-8e36-4111-b637-b78422e8650b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "dd23202a-53b7-447a-af52-cbdc0fc4a9b6" + "e1d58b69-09a7-439b-ac52-cdd6a076f671" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "d9a27948-13a1-42b8-9cbe-702b5033b15b" + "004eacd1-6c5f-4ea7-9ca3-78f8bb999af9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212038Z:d9a27948-13a1-42b8-9cbe-702b5033b15b" + "NORTHEUROPE:20210409T080505Z:004eacd1-6c5f-4ea7-9ca3-78f8bb999af9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:20:38 GMT" + "Fri, 09 Apr 2021 08:05:05 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 30433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30433-Global8134\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"30433-Global7451\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30433-Global7451\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 57277,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS57277-Global2297\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"57277-Global8023\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57277-Global8023\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Edge&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Edge&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9705623-a33e-4439-a7e2-12729bf39867" + "959f57e5-f5e3-4d79-b6f9-ad5ff9709ac9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "b4c9c116-07eb-442a-a21d-72fd0a83b89d" + "adc220e4-3a5f-4a65-9c95-b4e987dccf88" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "d6539b1a-6584-4f5e-b84b-a547a4f2bcf9" + "7213e8c6-5109-4528-93f6-825c8732bcdb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212041Z:d6539b1a-6584-4f5e-b84b-a547a4f2bcf9" + "NORTHEUROPE:20210409T080507Z:7213e8c6-5109-4528-93f6-825c8732bcdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:20:40 GMT" + "Fri, 09 Apr 2021 08:05:07 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f59ec593-ebfe-4a0f-9059-8e33c87fec31" + "7db0181b-a57f-4e6a-8251-9a5fc43f32a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "e79debaf-58df-4642-b6e7-b8b0730b1063" + "e67dc1ac-0227-4501-9162-1aa2d26ff701" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "dd8bece4-e13e-4fa4-8ddc-6ae52092920f" + "9660dca4-8444-4359-b3df-885e3a1f5403" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212042Z:dd8bece4-e13e-4fa4-8ddc-6ae52092920f" + "NORTHEUROPE:20210409T080508Z:9660dca4-8444-4359-b3df-885e3a1f5403" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:20:42 GMT" + "Fri, 09 Apr 2021 08:05:08 GMT" ], "Expires": [ "-1" @@ -249,8 +249,8 @@ ], "Names": { "Test-GetLocationKindDirectSeattle": [ - "30433-Global7451", - "AS30433-Global8134" + "57277-Global8023", + "AS57277-Global2297" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle99999.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle99999.json index c0cef1e0d87c..daa34368e94e 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle99999.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle99999.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64762-Global9257?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NDc2Mi1HbG9iYWw5MjU3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16923-Global5214?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNjkyMy1HbG9iYWw1MjE0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64762-Global4308\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 16923,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16923-Global1632\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c54fa65f-fa7f-4284-95b1-17ad24858953" + "ff3e8f21-78c8-4913-9487-ef1ae003615d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "755f16ed-0b4b-42e0-8e38-265f759ea575" + "436b5f78-9d1f-4ff1-8a84-6d089f1f69da" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "0baac901-d988-4e04-8572-4b3bc5be89b6" + "651e5bb1-1c2d-492f-bfe5-8002725d49c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211816Z:0baac901-d988-4e04-8572-4b3bc5be89b6" + "NORTHEUROPE:20210409T080104Z:651e5bb1-1c2d-492f-bfe5-8002725d49c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:18:16 GMT" + "Fri, 09 Apr 2021 08:01:04 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64762-Global4308\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"64762-Global9257\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64762-Global9257\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 16923,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16923-Global1632\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"16923-Global5214\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16923-Global5214\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64762-Global9257?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NDc2Mi1HbG9iYWw5MjU3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16923-Global5214?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNjkyMy1HbG9iYWw1MjE0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64762-Global4308\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 16923,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16923-Global1632\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7cf539b9-3b13-4616-b7d7-43ec8c410246" + "a2c82860-9c7c-445f-bcf9-cd3f6f3a7184" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "d130c4ad-e41f-4d8b-b285-c027d835c7b8" + "e2211db5-1578-4238-8a0a-08562bda8580" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "d0fdc02d-9f4d-42a8-95f7-8396ef2c8281" + "5fc71871-d5f8-4047-89e0-8c8df2c70e4a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211817Z:d0fdc02d-9f4d-42a8-95f7-8396ef2c8281" + "NORTHEUROPE:20210409T080105Z:5fc71871-d5f8-4047-89e0-8c8df2c70e4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:18:17 GMT" + "Fri, 09 Apr 2021 08:01:05 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64762-Global4308\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"64762-Global9257\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64762-Global9257\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 16923,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16923-Global1632\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"16923-Global5214\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16923-Global5214\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Edge&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Edge&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd40e377-19db-41d1-8d61-a2192fa04d9c" + "c40e539b-8036-4b29-9510-2bca4eee97a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "3bc0563f-1da0-46c6-a68c-a5a2f94294a8" + "afeb153d-1414-490e-9756-9891422bb18a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "60394ca3-3c45-4125-bd7d-85cc57d7c659" + "63bff44d-757e-4d12-bc46-3f55bd330650" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211820Z:60394ca3-3c45-4125-bd7d-85cc57d7c659" + "NORTHEUROPE:20210409T080108Z:63bff44d-757e-4d12-bc46-3f55bd330650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:18:19 GMT" + "Fri, 09 Apr 2021 08:01:07 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf22d4fc-991c-42cd-98b6-4e6f6cd27751" + "466eafbe-5ce6-48f9-a8e5-45ca06ba07b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "7e2edad5-42ec-4195-8ed3-c57de365f050" + "fc05b88d-9157-4888-a8dc-edf18ecf3cfd" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "0c537619-86ab-4516-a9e7-9df501511466" + "83027c77-9f2c-4900-a837-e0929d65d6c0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211821Z:0c537619-86ab-4516-a9e7-9df501511466" + "NORTHEUROPE:20210409T080109Z:83027c77-9f2c-4900-a837-e0929d65d6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:18:21 GMT" + "Fri, 09 Apr 2021 08:01:09 GMT" ], "Expires": [ "-1" @@ -249,8 +249,8 @@ ], "Names": { "Test-GetLocationKindDirectSeattle99999": [ - "64762-Global9257", - "AS64762-Global4308" + "16923-Global5214", + "AS16923-Global1632" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle99999WithLocation.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle99999WithLocation.json index f1d96ed0364f..d91923c6d850 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle99999WithLocation.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindDirectSeattle99999WithLocation.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35092-Global1347?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNTA5Mi1HbG9iYWwxMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3341-Global4538?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMzQxLUdsb2JhbDQ1Mzg/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 35092,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS35092-Global1703\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 3341,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS3341-Global195\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1a3a5508-c16a-462b-9b48-a745916392a3" + "e70ad9a2-c2ed-443b-92f3-f663c9a6a2f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "379" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "c4194e72-a246-42fc-b773-57fe74b436fc" + "a32afbf0-747f-4633-8c71-1d6c29ce583f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "55" ], "x-ms-correlation-request-id": [ - "42d5ddee-5679-4270-b207-4def96db3e8c" + "d605c91d-9a61-465a-9dd2-bc45693ee416" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211844Z:42d5ddee-5679-4270-b207-4def96db3e8c" + "NORTHEUROPE:20210409T080150Z:d605c91d-9a61-465a-9dd2-bc45693ee416" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:18:43 GMT" + "Fri, 09 Apr 2021 08:01:49 GMT" ], "Content-Length": [ - "611" + "603" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 35092,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS35092-Global1703\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"35092-Global1347\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35092-Global1347\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 3341,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS3341-Global195\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"3341-Global4538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3341-Global4538\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35092-Global1347?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNTA5Mi1HbG9iYWwxMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3341-Global4538?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMzQxLUdsb2JhbDQ1Mzg/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 35092,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS35092-Global1703\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 3341,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS3341-Global195\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f9fed36f-be5c-4c3d-9006-62c886173489" + "76e887e6-2e15-4894-886a-ca477a37506b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "415" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "f1302e71-fce9-46c3-b8a1-95853146e6b1" + "d55c5c30-56a2-4832-ab97-63984184707f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "56" + "54" ], "x-ms-correlation-request-id": [ - "d93ef288-c9e3-4ebc-85c4-2fd165c7425c" + "45add9b4-47c9-4320-8a1b-15ebcf1ccf9b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211845Z:d93ef288-c9e3-4ebc-85c4-2fd165c7425c" + "NORTHEUROPE:20210409T080151Z:45add9b4-47c9-4320-8a1b-15ebcf1ccf9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:18:45 GMT" + "Fri, 09 Apr 2021 08:01:51 GMT" ], "Content-Length": [ - "612" + "603" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 35092,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS35092-Global1703\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"35092-Global1347\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35092-Global1347\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 3341,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS3341-Global195\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"3341-Global4538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3341-Global4538\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Edge&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Edge&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "801c4bf3-d9d2-49e0-847b-908d88f346b4" + "1082e3db-b013-4f12-9dfc-492cf97ae7bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "f9dc7127-9ae7-4de1-a7b1-b3b96263400f" + "f723a8bc-8537-46f7-80a0-508b8670bc12" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "57" ], "x-ms-correlation-request-id": [ - "bf6b3c97-b1cc-49fa-b6df-89dcdc8cc1b8" + "0b66db85-45ab-4b39-890e-2a2cc817af03" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211848Z:bf6b3c97-b1cc-49fa-b6df-89dcdc8cc1b8" + "NORTHEUROPE:20210409T080154Z:0b66db85-45ab-4b39-890e-2a2cc817af03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:18:47 GMT" + "Fri, 09 Apr 2021 08:01:54 GMT" ], "Content-Length": [ - "76814" + "94076" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4360,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4360\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n },\r\n {\r\n \"address\": \"Gutleutstrasse 310\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/74\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cessnalaan 1\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/64\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Koto-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 738,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/738\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"323 Mokdongdong-ro Yangcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2491,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2491\"\r\n },\r\n {\r\n \"address\": \"3F, 189, Gasan Digital 1-ro, Geumcheon-gu\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7674,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7674\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n },\r\n {\r\n \"address\": \"26A Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2260,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2260\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7, Butlerova street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 152,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/152\"\r\n },\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 37 Lane 188, Ruiguang Rd. Nei-hu Dist.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5678,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5678\"\r\n },\r\n {\r\n \"address\": \"No. 31, Aiguo E. Rd., Da’an Dist., Taipei City 106, Taiwan (R.O.C.)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5904,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5904\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n },\r\n {\r\n \"address\": \"Reliance jio infocomm pvt Ltd, Guindy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100007,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/3020\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 Summer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 219,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/219\"\r\n },\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Ln\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1918,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1918\"\r\n },\r\n {\r\n \"address\": \"1541 Pama Lane\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100003,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"1-26-1 Shinmachi Nishi-ku\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1791,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1791\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"International Media Production Zone (IMPZ)\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1355\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"In der Steele 29\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 106,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/106\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Landsberger Str. 155\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 109,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/109\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 350,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Route du Bois-des-Fréres 46\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 826,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/826\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sameer Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1964,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1964\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ulvenveien 89b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 345,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/345\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Oregun, Ikeja\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4411,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4411\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via dei Tizi 6/b\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 555,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/555\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6 Nevatim street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8433,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8433\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tel Aviv\",\r\n \"country\": \"IL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tel Aviv\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21005 Lahser Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1927\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Yukarı Dudullu Organize Sanayi Bölgesi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"H158/2A Hoang Hoa Tham\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8755,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8755\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ho Chi Minh City\",\r\n \"country\": \"VN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ho Chi Minh City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2076,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2076\"\r\n },\r\n {\r\n \"address\": \"6602 Executive Park Court N\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100001,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2730\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jacksonville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jacksonville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"KM 28 Cairo-Alex Desert Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100002,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2593\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cairo\",\r\n \"country\": \"EG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cairo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Gaidara 50\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 365,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/365\"\r\n },\r\n {\r\n \"address\": \"50, Simi Prakhovykh Str\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100004,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/350\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ul. Tsvetochnaya, 19\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100005,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/605\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Saint Petersburg\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saint Petersburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5761 Copley Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1928,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1928\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Diego\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Diego\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"P.O. Box 22408\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 654,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/654\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Piti\",\r\n \"country\": \"GU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Piti\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1841 Air Lane Dr\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1924,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1924\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nashville\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nashville\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Avenida Pedro Castro Van Dúnem Loy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1275,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1275\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Luanda\",\r\n \"country\": \"AO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luanda\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"401 N Broad St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 100006,\r\n \"peeringDBFacilityLink\": \"https://portal.stratus.ms/facility-viewer/Facility/Details/2707\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Philadelphia\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Philadelphia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2302 Presidents Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2077,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2077\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Salt Lake City\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salt Lake City\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47b75be7-06b3-4a2e-ba48-2a8e5dd6d85b" + "f1d806e5-53a4-4a2b-ae9f-4d05334c6028" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "c5e53a49-b389-46d9-a9c0-a8a6812772b7" + "97683821-9750-4f84-8c88-aa6815c43510" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "1da941eb-3a3d-4f53-a8dd-eaf446889cb4" + "3642cd2e-b1d5-4299-91e6-dcccf8180a58" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211849Z:1da941eb-3a3d-4f53-a8dd-eaf446889cb4" + "NORTHEUROPE:20210409T080155Z:3642cd2e-b1d5-4299-91e6-dcccf8180a58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:18:49 GMT" + "Fri, 09 Apr 2021 08:01:55 GMT" ], "Expires": [ "-1" @@ -249,8 +249,8 @@ ], "Names": { "Test-GetLocationKindDirectSeattle99999WithLocation": [ - "35092-Global1347", - "AS35092-Global1703" + "3341-Global4538", + "AS3341-Global195" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindExchange.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindExchange.json index 7a172feef618..ca7df4fc1ff8 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindExchange.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindExchange.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29024-Global3559?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTAyNC1HbG9iYWwzNTU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25056-Global4529?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNTA1Ni1HbG9iYWw0NTI5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29024,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29024-Global4635\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 25056,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25056-Global4954\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b41b45aa-9ee3-4929-b955-c9a0cdfb72dc" + "503240c5-150a-4bed-9ebf-369fba6de274" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "f37e1fb0-06ee-4dc7-9364-cfb2b3178b5e" + "8a60aff9-3523-482a-a856-fb980e746f18" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "3130427c-f3c6-4000-8d86-05788de62172" + "7099067a-1b4d-4fb4-93d7-d4ea491804d7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211744Z:3130427c-f3c6-4000-8d86-05788de62172" + "NORTHEUROPE:20210409T080016Z:7099067a-1b4d-4fb4-93d7-d4ea491804d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:17:44 GMT" + "Fri, 09 Apr 2021 08:00:16 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29024,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29024-Global4635\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"29024-Global3559\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29024-Global3559\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 25056,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25056-Global4954\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"25056-Global4529\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25056-Global4529\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29024-Global3559?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTAyNC1HbG9iYWwzNTU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25056-Global4529?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNTA1Ni1HbG9iYWw0NTI5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29024,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29024-Global4635\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 25056,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25056-Global4954\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "80de9d95-660a-402d-8a05-312bc665ea22" + "e7bb37d0-54e4-4b80-90dc-560e8e06eab1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "e97004df-2108-4867-b00d-f339cb3adefc" + "cbcbde93-7ba4-4682-8910-fe53b77c2ec2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "0864ab8e-0764-4222-a0e4-00ac75a5461b" + "2077d9f6-0554-4230-af54-8fd3cd0903c4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211745Z:0864ab8e-0764-4222-a0e4-00ac75a5461b" + "NORTHEUROPE:20210409T080018Z:2077d9f6-0554-4230-af54-8fd3cd0903c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:17:45 GMT" + "Fri, 09 Apr 2021 08:00:17 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29024,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29024-Global4635\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29024-Global3559\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29024-Global3559\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 25056,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25056-Global4954\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"25056-Global4529\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25056-Global4529\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f93bd09-fba3-48ec-aeac-1a21d8e94b2b" + "ed9b8e0f-19f0-47a7-a7fa-6420ed011ea2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "7501b3ff-d9a5-4c76-a728-2f4a4f9a78f1" + "d3ace313-4520-4783-8c52-7d2ddc5f3560" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "60a974bd-0c4e-4da2-9980-6bda5045b7ed" + "8182285a-18bd-4c27-888d-7032f7baaaaa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211748Z:60a974bd-0c4e-4da2-9980-6bda5045b7ed" + "NORTHEUROPE:20210409T080020Z:8182285a-18bd-4c27-888d-7032f7baaaaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:17:48 GMT" + "Fri, 09 Apr 2021 08:00:20 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa2e6d36-693b-474a-9f5d-4c6a6d87acb8" + "75a5372c-faf1-40ea-a4bc-886ca2f842b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "26279888-98bc-4b3a-a66e-5817b12e852b" + "c03d476c-eee0-4108-a104-e3b269711c1d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "7cf394a4-8530-428a-9a0a-05547bdaaf55" + "6e72015b-3020-43c9-ae8d-3232d540a368" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T211749Z:7cf394a4-8530-428a-9a0a-05547bdaaf55" + "NORTHEUROPE:20210409T080022Z:6e72015b-3020-43c9-ae8d-3232d540a368" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:17:49 GMT" + "Fri, 09 Apr 2021 08:00:22 GMT" ], "Expires": [ "-1" @@ -249,8 +249,8 @@ ], "Names": { "Test-GetLocationKindExchange": [ - "29024-Global3559", - "AS29024-Global4635" + "25056-Global4529", + "AS25056-Global4954" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindExchangeSeattle.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindExchangeSeattle.json index 59767740adb9..789b4d876cd1 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindExchangeSeattle.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetLocationTests/TestGetLocationKindExchangeSeattle.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31160-Global8313?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMTE2MC1HbG9iYWw4MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41103-Global9929?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80MTEwMy1HbG9iYWw5OTI5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 31160,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31160-Global5024\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 41103,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS41103-Global7410\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7729ee1-579b-4c51-850b-c3f9c2dcccad" + "84f045fe-0465-47af-a4a1-0705f96b11d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "aebc26d1-3165-4d4d-95db-e277247e117f" + "fe305f9d-43c1-43bd-a8e8-42c4c4437705" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "992352b0-3df7-4494-8163-33facbb7681c" + "45dc5bbc-d18d-41a3-90c2-dda5cfc52ea4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212008Z:992352b0-3df7-4494-8163-33facbb7681c" + "NORTHEUROPE:20210409T080413Z:45dc5bbc-d18d-41a3-90c2-dda5cfc52ea4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:20:07 GMT" + "Fri, 09 Apr 2021 08:04:12 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 31160,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31160-Global5024\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"31160-Global8313\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31160-Global8313\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 41103,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS41103-Global7410\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"41103-Global9929\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41103-Global9929\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31160-Global8313?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMTE2MC1HbG9iYWw4MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41103-Global9929?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80MTEwMy1HbG9iYWw5OTI5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 31160,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31160-Global5024\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 41103,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS41103-Global7410\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "de0564f5-923c-45d4-8239-ed997d92da2a" + "7f46c20e-1b5d-4578-abe7-f885e720807c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "9ee17e2e-0059-41d0-a097-d4fef8c86f88" + "dd2b1d10-b3e5-4ae8-8099-7aba72557876" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "523fd3f7-2676-4f2e-9477-4b05b2a0c731" + "4d95611d-a498-4ca2-a5ce-c65e5b8d9f4c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212010Z:523fd3f7-2676-4f2e-9477-4b05b2a0c731" + "NORTHEUROPE:20210409T080414Z:4d95611d-a498-4ca2-a5ce-c65e5b8d9f4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:20:10 GMT" + "Fri, 09 Apr 2021 08:04:14 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 31160,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31160-Global5024\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"31160-Global8313\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31160-Global8313\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 41103,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS41103-Global7410\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"41103-Global9929\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41103-Global9929\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce4af384-3c38-4624-991f-d025e36da18d" + "2a3a926c-7451-4a38-b2a5-11a023447c66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "61221e8d-4dda-444a-aefe-c801a7ec65b8" + "879a8fd1-3fe0-4c9c-a67e-7ce9474f28a9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "a8a41e07-b6e3-4abb-be6f-fbe858006f48" + "807dada1-65a4-4ae3-8b53-42f0ea058102" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212012Z:a8a41e07-b6e3-4abb-be6f-fbe858006f48" + "NORTHEUROPE:20210409T080417Z:807dada1-65a4-4ae3-8b53-42f0ea058102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:20:12 GMT" + "Fri, 09 Apr 2021 08:04:16 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Microsoft.Azure.PowerShell.Cmdlets.Peering.Models.PSPeerAsn?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9NaWNyb3NvZnQuQXp1cmUuUG93ZXJTaGVsbC5DbWRsZXRzLlBlZXJpbmcuTW9kZWxzLlBTUGVlckFzbj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a08fafe1-3bbd-4eca-97a5-2d553905aa64" + "8aa2dd9d-caa4-4642-9687-26bbd2940a93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "546a7c43-2a79-4780-ab77-baf7da7dc1e9" + "467c8d2a-1410-4c96-afb2-f4a2e0b67f5b" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "2ca60c4b-abc7-4da2-a5ea-188e0cb7fd4d" + "fcf0e775-c32b-43b8-9a14-75b52891e486" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212013Z:2ca60c4b-abc7-4da2-a5ea-188e0cb7fd4d" + "NORTHEUROPE:20210409T080418Z:fcf0e775-c32b-43b8-9a14-75b52891e486" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,7 +237,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:20:12 GMT" + "Fri, 09 Apr 2021 08:04:18 GMT" ], "Expires": [ "-1" @@ -249,8 +249,8 @@ ], "Names": { "Test-GetLocationKindExchangeSeattle": [ - "31160-Global8313", - "AS31160-Global5024" + "41103-Global9929", + "AS41103-Global7410" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetRxRoutes/TestGetRxRoutes.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetRxRoutes/TestGetRxRoutes.json index 46012ffcf2c0..d90ccefc2d55 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetRxRoutes/TestGetRxRoutes.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetRxRoutes/TestGetRxRoutes.json @@ -1,66 +1,68 @@ { - "Entries": [{ - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland/receivedRoutes?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0NlbnR1cnlMaW5rL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9Qb3J0bGFuZC9yZWNlaXZlZFJvdXRlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5e1b7d0-be8c-45d9-b08f-aa37eadfb9d7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "369cffd1-c302-481d-89e5-7badfc5dfbcb" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "893f820d-5fb9-416b-ba3a-c8d990745796" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200521T182733Z:893f820d-5fb9-416b-ba3a-c8d990745796" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 21 May 2020 18:27:33 GMT" - ], - "Content-Length": [ - "19" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"prefix\": \"8.23.254.0/24\",\r\n \"nextHop\": \"104.44.14.34\",\r\n \"asPath\": \"3356\",\r\n \"originAsValidationState\": \"Invalid\",\r\n \"rpkiValidationState\": \"Unknown\",\r\n \"trustAnchor\": \"None\",\r\n \"receivedTimestamp\": \"2019-08-09T07:14:46Z\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }], - "Names": {}, - "Variables": { - "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239" + "Entries": [ + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland/receivedRoutes?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0NlbnR1cnlMaW5rL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9Qb3J0bGFuZC9yZWNlaXZlZFJvdXRlcz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f1e0345-b93b-426a-888d-e90f591d0f0d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8bbe8a0f-21be-4c04-b4a1-83a6b0cdf6e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "acc8a3e7-25d1-4caa-807e-e5ae8e7277ba" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T075551Z:acc8a3e7-25d1-4caa-807e-e5ae8e7277ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 07:55:50 GMT" + ], + "Content-Length": [ + "306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"prefix\": \"59.153.200.0/24\",\r\n \"nextHop\": \"4.68.74.181\",\r\n \"asPath\": \"3356\",\r\n \"originAsValidationState\": \"Unknown\",\r\n \"rpkiValidationState\": \"Unknown\",\r\n \"trustAnchor\": \"None\",\r\n \"receivedTimestamp\": \"2019-08-09T07:14:46Z\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239" + } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetRxRoutes/TestListRxRoutesAsPath.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetRxRoutes/TestListRxRoutesAsPath.json index e42816bf156b..d36934e7ef39 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetRxRoutes/TestListRxRoutesAsPath.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.GetRxRoutes/TestListRxRoutesAsPath.json @@ -1,127 +1,128 @@ { - "Entries": [{ - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0NlbnR1cnlMaW5rL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9Qb3J0bGFuZD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1df1d8d6-9380-477a-be46-096a9d1db2b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f725727c-47b4-473d-b083-529d9b3d15a1" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" - ], - "x-ms-correlation-request-id": [ - "0f88c5a6-8ec5-4371-ba69-c38b91bc8800" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200521T182758Z:0f88c5a6-8ec5-4371-ba69-c38b91bc8800" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 21 May 2020 18:27:58 GMT" - ], - "Content-Length": [ - "2685" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"d7bfa4d1-72ec-4ac3-8fc2-651a713d95e5\",\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland/receivedRoutes?asPath=3356&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0NlbnR1cnlMaW5rL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9Qb3J0bGFuZC9yZWNlaXZlZFJvdXRlcz9hc1BhdGg9MzM1NiZhcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "78404335-32c5-4925-a91e-4aedb334ad47" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6f39da3f-be81-45ca-bb65-49be81828627" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "6d9bad98-fd4f-44f9-b0c8-48b1e10f1f25" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20200521T182759Z:6d9bad98-fd4f-44f9-b0c8-48b1e10f1f25" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 21 May 2020 18:27:59 GMT" - ], - "Content-Length": [ - "19" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"prefix\": \"8.23.254.0/24\",\r\n \"nextHop\": \"104.44.14.34\",\r\n \"asPath\": \"3356\",\r\n \"originAsValidationState\": \"Invalid\",\r\n \"rpkiValidationState\": \"Unknown\",\r\n \"trustAnchor\": \"None\",\r\n \"receivedTimestamp\": \"2019-08-09T07:14:46Z\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239" + "Entries": [ + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0NlbnR1cnlMaW5rL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9Qb3J0bGFuZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34bd4668-9a70-4650-82ca-f29c04cec504" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5c54ad4e-ae37-4bff-acf9-bd5553d0906e" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "59" + ], + "x-ms-correlation-request-id": [ + "29223899-a819-4b9e-81cc-26a842db2155" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T075633Z:29223899-a819-4b9e-81cc-26a842db2155" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 07:56:33 GMT" + ], + "Content-Length": [ + "2625" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland/receivedRoutes?asPath=3356&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0NlbnR1cnlMaW5rL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9Qb3J0bGFuZC9yZWNlaXZlZFJvdXRlcz9hc1BhdGg9MzM1NiZhcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81715f59-3b42-4e45-a8ec-2eea702ea39f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c7683af8-a788-49c0-8274-e3138648c883" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "c9a9b4e1-29b5-4692-b551-6f5224178d76" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T075634Z:c9a9b4e1-29b5-4692-b551-6f5224178d76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 07:56:34 GMT" + ], + "Content-Length": [ + "306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"prefix\": \"59.153.200.0/24\",\r\n \"nextHop\": \"4.68.74.181\",\r\n \"asPath\": \"3356\",\r\n \"originAsValidationState\": \"Unknown\",\r\n \"rpkiValidationState\": \"Unknown\",\r\n \"trustAnchor\": \"None\",\r\n \"receivedTimestamp\": \"2019-08-09T07:14:46Z\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239" + } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestGetPeerAsn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestGetPeerAsn.json index eb17ad338eb4..e79e63e922f9 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestGetPeerAsn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestGetPeerAsn.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global1475?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWwxNDc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global5358?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWw1MzU4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 17403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps4210\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 4486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps428\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bf10f19c-ba25-48de-a9c0-b63e1909b55d" + "73b1b481-fc90-47ef-a32a-6412239ec72a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "350" + "346" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "a21b1103-6dd8-4b84-b6d7-17e4f5888d8d" + "2915f5f2-8f64-4201-8218-8b08258df1a4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "962eac07-3471-4ae6-aa0e-ac3902035c5a" + "80d67dbb-8c46-4429-a5c4-d0808739c4b6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212107Z:962eac07-3471-4ae6-aa0e-ac3902035c5a" + "NORTHEUROPE:20210409T081323Z:80d67dbb-8c46-4429-a5c4-d0808739c4b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:21:06 GMT" + "Fri, 09 Apr 2021 08:13:22 GMT" ], "Content-Length": [ - "563" + "560" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 17403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps4210\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"Global1475\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global1475\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 4486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps428\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"Global5358\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global5358\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global1475?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWwxNDc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global5358?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWw1MzU4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d7f6ade-de0f-441b-872d-e92f0427b081" + "e95f5710-9fdf-46b6-a106-a57f58925a3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-request-id": [ - "330e9bee-85f3-4c26-aa74-7d925226a8fe" + "cd6f6826-6af1-411d-baad-679ffcccb0b3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "0b451595-d5dc-4be0-a853-f8176ba19b18" + "dfc2d6c3-6133-4d7a-b370-1147d918c1d7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212107Z:0b451595-d5dc-4be0-a853-f8176ba19b18" + "NORTHEUROPE:20210409T081323Z:dfc2d6c3-6133-4d7a-b370-1147d918c1d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:21:06 GMT" + "Fri, 09 Apr 2021 08:13:23 GMT" ], "Content-Length": [ - "563" + "560" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,14 +123,14 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 17403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps4210\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"Global1475\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global1475\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 4486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps428\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"Global5358\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global5358\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-GetPeerAsn": [ - "Global1475", - "ps4210" + "Global5358", + "ps428" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestListPeerAsn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestListPeerAsn.json index decff7209510..8350499e406b 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestListPeerAsn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestListPeerAsn.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14105-Global7074?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNDEwNS1HbG9iYWw3MDc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15401-Global8451?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTQwMS1HbG9iYWw4NDUxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 14105,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14105-Global2057\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15401,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15401-Global8739\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "50485bfa-c577-43f3-bc72-40ae7af04718" + "91c93812-119d-4165-9c0c-eca6742e4e66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "6a70b0e0-487b-486c-a614-ce1a93db853a" + "73076176-365d-4f2c-9de3-a1f1cdf45cd7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "7ba3dbd7-6858-43a7-bff3-9c21aef13254" + "9e1c0749-8397-4562-8c00-75f65effa834" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212225Z:7ba3dbd7-6858-43a7-bff3-9c21aef13254" + "NORTHEUROPE:20210409T081546Z:9e1c0749-8397-4562-8c00-75f65effa834" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:25 GMT" + "Fri, 09 Apr 2021 08:15:45 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 14105,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14105-Global2057\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"14105-Global7074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14105-Global7074\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15401,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15401-Global8739\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"15401-Global8451\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15401-Global8451\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14105-Global7074?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNDEwNS1HbG9iYWw3MDc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15401-Global8451?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTQwMS1HbG9iYWw4NDUxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 14105,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14105-Global2057\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15401,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15401-Global8739\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1dc0285-d1f3-44bd-a464-be93e5bbaa40" + "d3dc0270-f67b-41cf-ae87-127c99203f97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "391ef2c1-df67-4a48-80b3-81082b5dbe63" + "1bc9c6d9-c696-452c-8731-611e7e22ca4d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "06cee9be-4c40-4662-981b-14d4ce67fd20" + "5cb97f94-e5dc-4628-abfb-e37a8f554e9b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212226Z:06cee9be-4c40-4662-981b-14d4ce67fd20" + "NORTHEUROPE:20210409T081547Z:5cb97f94-e5dc-4628-abfb-e37a8f554e9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:26 GMT" + "Fri, 09 Apr 2021 08:15:46 GMT" ], "Content-Length": [ "612" @@ -129,32 +129,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 14105,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14105-Global2057\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"14105-Global7074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14105-Global7074\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 15401,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15401-Global8739\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"15401-Global8451\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15401-Global8451\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52243-Global6140?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MjI0My1HbG9iYWw2MTQwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2305-Global7017?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMzA1LUdsb2JhbDcwMTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52243,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52243-Global4305\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2305,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2305-Global8472\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1c8b5a52-8727-4cc0-805d-0ca4f006208a" + "fd9edfbc-19e3-4636-bfa5-fa5f1c3f02b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "382" ] }, "ResponseHeaders": { @@ -165,16 +165,16 @@ "no-cache" ], "x-ms-request-id": [ - "2c222d57-dddc-4e4a-924d-b5e8a688bbe3" + "7643a2c2-53f8-4e93-aa5f-1fa1226b960d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "55" ], "x-ms-correlation-request-id": [ - "aa6ef9b2-14ea-436c-898a-b54287bc0f97" + "3aaea961-38eb-4b08-a1f4-c26ee06d1802" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212229Z:aa6ef9b2-14ea-436c-898a-b54287bc0f97" + "NORTHEUROPE:20210409T081550Z:3aaea961-38eb-4b08-a1f4-c26ee06d1802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:28 GMT" + "Fri, 09 Apr 2021 08:15:49 GMT" ], "Content-Length": [ - "611" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,32 +195,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52243,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52243-Global4305\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"52243-Global6140\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52243-Global6140\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2305,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2305-Global8472\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"2305-Global7017\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2305-Global7017\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52243-Global6140?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MjI0My1HbG9iYWw2MTQwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2305-Global7017?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMzA1LUdsb2JhbDcwMTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52243,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52243-Global4305\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2305,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2305-Global8472\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fe438882-55b2-41cc-a38a-c693a1f8394d" + "ab678867-d61f-4c04-8cc6-da824c7e4c8d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "418" ] }, "ResponseHeaders": { @@ -231,16 +231,16 @@ "no-cache" ], "x-ms-request-id": [ - "df35237d-fd73-4877-a9db-f274e3058318" + "73d017fa-a27e-4f75-9422-dd611941e216" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "56" + "54" ], "x-ms-correlation-request-id": [ - "35ed844e-9ebb-4d05-a026-c424d85610b1" + "60555215-d029-43a8-9878-3ef604a85eb7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212230Z:35ed844e-9ebb-4d05-a026-c424d85610b1" + "NORTHEUROPE:20210409T081551Z:60555215-d029-43a8-9878-3ef604a85eb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,10 +249,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:30 GMT" + "Fri, 09 Apr 2021 08:15:50 GMT" ], "Content-Length": [ - "612" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52243,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52243-Global4305\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"52243-Global6140\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52243-Global6140\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2305,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2305-Global8472\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"2305-Global7017\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2305-Global7017\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29520-Global4354?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTUyMC1HbG9iYWw0MzU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47880-Global7863?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Nzg4MC1HbG9iYWw3ODYzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29520,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29520-Global1621\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47880,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47880-Global9380\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a243fb24-72e7-40fe-bb00-7fb2801968c5" + "069e8c61-4d7f-4b9a-a846-d8dc94f56c04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,16 +297,16 @@ "no-cache" ], "x-ms-request-id": [ - "ec53bdbb-c1ae-442f-8415-a5da551e8eee" + "ce24abb6-e886-472a-8fb0-683d33276709" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "55" + "53" ], "x-ms-correlation-request-id": [ - "e0c41b18-f934-4232-97e1-9f88d597216a" + "cbd44879-ac6c-4879-88da-b44f85bbee47" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212233Z:e0c41b18-f934-4232-97e1-9f88d597216a" + "NORTHEUROPE:20210409T081556Z:cbd44879-ac6c-4879-88da-b44f85bbee47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,10 +315,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:32 GMT" + "Fri, 09 Apr 2021 08:15:56 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,26 +327,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29520,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29520-Global1621\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"29520-Global4354\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29520-Global4354\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47880,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47880-Global9380\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"47880-Global7863\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47880-Global7863\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29520-Global4354?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTUyMC1HbG9iYWw0MzU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47880-Global7863?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Nzg4MC1HbG9iYWw3ODYzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29520,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29520-Global1621\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47880,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47880-Global9380\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d242d7e-6fc3-42b2-8fc4-3ca087894b02" + "929cf621-1de4-412a-8c3f-c27de9bb41f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -363,16 +363,16 @@ "no-cache" ], "x-ms-request-id": [ - "6eff9ae7-f4af-4fc9-b9e9-15ad7251b042" + "bf5321df-01ca-43aa-9f8c-c1af1ee674f4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "54" + "52" ], "x-ms-correlation-request-id": [ - "580ce4b8-bdd2-4186-9e83-3e349e893eea" + "7241eb19-d168-4971-87a9-53e41381a9db" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212234Z:580ce4b8-bdd2-4186-9e83-3e349e893eea" + "NORTHEUROPE:20210409T081558Z:7241eb19-d168-4971-87a9-53e41381a9db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,7 +381,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:34 GMT" + "Fri, 09 Apr 2021 08:15:57 GMT" ], "Content-Length": [ "612" @@ -393,26 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29520,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29520-Global1621\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29520-Global4354\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29520-Global4354\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 47880,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47880-Global9380\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"47880-Global7863\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47880-Global7863\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61a55dd4-085e-420c-ac80-7cc8748fb62d" + "c849975a-1b6a-4bea-8f87-3db38e36ea15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -423,16 +423,16 @@ "no-cache" ], "x-ms-request-id": [ - "605b45d3-421f-4bc5-80dd-96c020653ddb" + "d66d2dbb-4a4f-4fa4-a26a-a60c899b1c8b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "6d274183-553f-4ecf-ad77-b44d8aba8c3a" + "b5073af4-812d-4463-af0b-54408781b1f9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212237Z:6d274183-553f-4ecf-ad77-b44d8aba8c3a" + "NORTHEUROPE:20210409T081600Z:b5073af4-812d-4463-af0b-54408781b1f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,10 +441,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:36 GMT" + "Fri, 09 Apr 2021 08:16:00 GMT" ], "Content-Length": [ - "13568" + "22198" ], "Content-Type": [ "application/json; charset=utf-8" @@ -453,26 +453,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 20108,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20108-Global4761.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20108-Global4761.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20108-Global4761\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"20108-Global6999\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 37446,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37446-Global1445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37446-Global1445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37446-Global1445\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"37446-Global9317\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37446-Global9317\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 1078,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1078-Global1818.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1078-Global1818.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1078-Global1818\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"1078-Global9080\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 19487,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps5298@19487-Global2450.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS19487-Global8305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS19487-Global8305\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"19487-Global2450\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19487-Global2450\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"rimckenn@microsoft.com\",\r\n \"phone\": \"2134234243\"\r\n }\r\n ],\r\n \"peerName\": \"L3 LLC\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestCenturyLink\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"701 Network\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"legacy701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/legacy701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 29024,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29024-Global4635\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29024-Global3559\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29024-Global3559\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64762-Global4308\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"64762-Global9257\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64762-Global9257\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 35092,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS35092-Global1703\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"35092-Global1347\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35092-Global1347\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 62858,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS62858-Global1047\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"62858-Global4971\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62858-Global4971\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 54292,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS54292-Global1423\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"54292-Global9989\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54292-Global9989\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 31160,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31160-Global5024\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"31160-Global8313\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31160-Global8313\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 30433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30433-Global8134\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"30433-Global7451\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30433-Global7451\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 17403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps4210\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"Global1475\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global1475\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 14105,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14105-Global2057\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"14105-Global7074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14105-Global7074\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 52243,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52243-Global4305\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"52243-Global6140\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52243-Global6140\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 29520,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29520-Global1621\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29520-Global4354\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29520-Global4354\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"CenturyLink\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3356\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 58969,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"nocadmin@keralavisionisp.com\",\r\n \"phone\": \"8086897055\"\r\n }\r\n ],\r\n \"peerName\": \"Kerala Vision Broadband\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS58969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS58969\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15133,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"prsanapa@microsoft.com\",\r\n \"phone\": \"1234567890\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestVerizon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network@mit.edu\",\r\n \"phone\": \"\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 101,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@pnw-gigapop.net\",\r\n \"phone\": \"+18889345580\"\r\n }\r\n ],\r\n \"peerName\": \"Pacific Northwest Gigapop\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS101\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS101\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 6762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network.noc@tisparkle.com\",\r\n \"phone\": \"+390652744444\"\r\n }\r\n ],\r\n \"peerName\": \"Telecom Italia Sparkle\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS6762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 9116,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@012.net\",\r\n \"phone\": \"+972722003890\"\r\n }\r\n ],\r\n \"peerName\": \"012 Smile Telecom\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS9116\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 47880,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47880-Global9380\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"47880-Global7863\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47880-Global7863\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 2305,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2305-Global8472\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"2305-Global7017\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2305-Global7017\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15401,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15401-Global8739\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"15401-Global8451\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15401-Global8451\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 4486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps428\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"Global5358\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global5358\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 57277,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS57277-Global2297\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"57277-Global8023\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57277-Global8023\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 41103,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS41103-Global7410\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"41103-Global9929\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41103-Global9929\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 36652,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36652-Global672\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36652-Global7588\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36652-Global7588\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 26069,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26069-Global6639\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"26069-Global158\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26069-Global158\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3341,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS3341-Global195\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"3341-Global4538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3341-Global4538\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 16923,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16923-Global1632\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"16923-Global5214\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16923-Global5214\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 25056,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25056-Global4954\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"25056-Global4529\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25056-Global4529\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 60340,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60340-Global9065\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60340-Global543\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 33584,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS33584-Global8931\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"33584-Global2728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 37685,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37685-Global293\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"37685-Global5983\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 48411,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48411-Global1748.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48411-Global1748.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48411-Global1748\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"48411-Global2390\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48411-Global2390\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8682,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS8682-Global7723.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS8682-Global7723.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS8682-Global7723\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"8682-Global4132\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/8682-Global4132\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 19703,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS19703-Global9979.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS19703-Global9979.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS19703-Global9979\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"19703-Global977\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19703-Global977\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 32247,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS32247-Global3923.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS32247-Global3923.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS32247-Global3923\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"32247-Global1543\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 792,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS792-Global2640.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS792-Global2640.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS792-Global2640\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"792-Global3027\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/792-Global3027\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 44208,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS44208-Global1805.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS44208-Global1805.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS44208-Global1805\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"44208-Global4565\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44208-Global4565\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 63102,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS63102-Global2846.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS63102-Global2846.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS63102-Global2846\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"63102-Global8850\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/63102-Global8850\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 26030,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26030-Global6633.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26030-Global6633.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26030-Global6633\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"26030-Global4868\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26030-Global4868\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 36646,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps1860@36646-Global2523.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36646-Global8842.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36646-Global8842\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36646-Global2523\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36646-Global2523\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1299e5f6-2288-4ea5-8d27-ab37f3058a56" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -483,16 +483,16 @@ "no-cache" ], "x-ms-request-id": [ - "50f4ff49-06ef-43ae-8d7f-7c43cb8fc10d" + "e0a30978-fbc4-4dcd-867e-3e606395c490" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "e7cfd052-a119-4deb-b87f-5022a023220f" + "4a26ef26-b6ef-42d5-a6cf-6d67538c249a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212237Z:e7cfd052-a119-4deb-b87f-5022a023220f" + "NORTHEUROPE:20210409T081601Z:4a26ef26-b6ef-42d5-a6cf-6d67538c249a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,10 +501,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:37 GMT" + "Fri, 09 Apr 2021 08:16:00 GMT" ], "Content-Length": [ - "13568" + "22198" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,26 +513,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 20108,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS20108-Global4761.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS20108-Global4761.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS20108-Global4761\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"20108-Global6999\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 37446,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37446-Global1445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37446-Global1445.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37446-Global1445\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"37446-Global9317\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37446-Global9317\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 1078,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1078-Global1818.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1078-Global1818.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1078-Global1818\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"1078-Global9080\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 19487,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps5298@19487-Global2450.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS19487-Global8305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS19487-Global8305\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"19487-Global2450\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19487-Global2450\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"rimckenn@microsoft.com\",\r\n \"phone\": \"2134234243\"\r\n }\r\n ],\r\n \"peerName\": \"L3 LLC\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestCenturyLink\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"701 Network\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"legacy701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/legacy701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 29024,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29024-Global4635.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29024-Global4635\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29024-Global3559\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29024-Global3559\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64762-Global4308.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64762-Global4308\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"64762-Global9257\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64762-Global9257\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 35092,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS35092-Global1703.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS35092-Global1703\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"35092-Global1347\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35092-Global1347\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 62858,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS62858-Global1047.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS62858-Global1047\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"62858-Global4971\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62858-Global4971\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 54292,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS54292-Global1423.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS54292-Global1423\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"54292-Global9989\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54292-Global9989\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 31160,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS31160-Global5024.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS31160-Global5024\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"31160-Global8313\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31160-Global8313\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 30433,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS30433-Global8134.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS30433-Global8134\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"30433-Global7451\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30433-Global7451\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 17403,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps4210.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps4210\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"Global1475\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global1475\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 14105,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS14105-Global2057.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS14105-Global2057\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"14105-Global7074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14105-Global7074\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 52243,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52243-Global4305.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52243-Global4305\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"52243-Global6140\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52243-Global6140\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 29520,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29520-Global1621.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29520-Global1621\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29520-Global4354\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29520-Global4354\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"CenturyLink\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3356\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 58969,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"nocadmin@keralavisionisp.com\",\r\n \"phone\": \"8086897055\"\r\n }\r\n ],\r\n \"peerName\": \"Kerala Vision Broadband\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS58969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS58969\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15133,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"prsanapa@microsoft.com\",\r\n \"phone\": \"1234567890\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestVerizon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network@mit.edu\",\r\n \"phone\": \"\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 101,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@pnw-gigapop.net\",\r\n \"phone\": \"+18889345580\"\r\n }\r\n ],\r\n \"peerName\": \"Pacific Northwest Gigapop\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS101\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS101\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 6762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network.noc@tisparkle.com\",\r\n \"phone\": \"+390652744444\"\r\n }\r\n ],\r\n \"peerName\": \"Telecom Italia Sparkle\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS6762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 9116,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@012.net\",\r\n \"phone\": \"+972722003890\"\r\n }\r\n ],\r\n \"peerName\": \"012 Smile Telecom\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS9116\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 47880,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS47880-Global9380.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS47880-Global9380\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"47880-Global7863\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47880-Global7863\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 2305,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2305-Global8472.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2305-Global8472\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"2305-Global7017\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2305-Global7017\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15401,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS15401-Global8739.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS15401-Global8739\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"15401-Global8451\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15401-Global8451\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 4486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps428.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps428\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"Global5358\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global5358\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 57277,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS57277-Global2297.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS57277-Global2297\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"57277-Global8023\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57277-Global8023\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 41103,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS41103-Global7410.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS41103-Global7410\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"41103-Global9929\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41103-Global9929\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 36652,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36652-Global672.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36652-Global672\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36652-Global7588\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36652-Global7588\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 26069,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26069-Global6639.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26069-Global6639\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"26069-Global158\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26069-Global158\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3341,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS3341-Global195.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS3341-Global195\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"3341-Global4538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3341-Global4538\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 16923,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS16923-Global1632.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS16923-Global1632\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"16923-Global5214\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16923-Global5214\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 25056,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS25056-Global4954.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS25056-Global4954\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"25056-Global4529\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25056-Global4529\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 60340,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60340-Global9065\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60340-Global543\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 33584,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS33584-Global8931\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"33584-Global2728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 37685,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37685-Global293\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"37685-Global5983\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 48411,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS48411-Global1748.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS48411-Global1748.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS48411-Global1748\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"48411-Global2390\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48411-Global2390\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8682,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS8682-Global7723.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS8682-Global7723.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS8682-Global7723\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"8682-Global4132\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/8682-Global4132\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 19703,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS19703-Global9979.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS19703-Global9979.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS19703-Global9979\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"19703-Global977\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19703-Global977\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 32247,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS32247-Global3923.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS32247-Global3923.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS32247-Global3923\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"32247-Global1543\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 792,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS792-Global2640.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS792-Global2640.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS792-Global2640\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"792-Global3027\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/792-Global3027\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 44208,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS44208-Global1805.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS44208-Global1805.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS44208-Global1805\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"44208-Global4565\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44208-Global4565\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 63102,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS63102-Global2846.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS63102-Global2846.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS63102-Global2846\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"63102-Global8850\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/63102-Global8850\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 26030,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS26030-Global6633.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS26030-Global6633.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS26030-Global6633\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"26030-Global4868\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26030-Global4868\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 36646,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps1860@36646-Global2523.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36646-Global8842.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36646-Global8842\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36646-Global2523\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36646-Global2523\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ed75849-45a9-4485-a5c5-a2c8f2533b1d" + "73b98ddf-904a-47be-b91d-9dd1362181fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -543,16 +543,16 @@ "no-cache" ], "x-ms-request-id": [ - "15fd96fd-a421-487d-98ee-093dbf8677cb" + "44a8a21b-c9c1-444c-827a-b211547ef5af" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "55" ], "x-ms-correlation-request-id": [ - "c1e000c1-3b88-4dad-986f-2dbf797859ad" + "88e445c5-b995-49dc-888d-ec42dff56522" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212244Z:c1e000c1-3b88-4dad-986f-2dbf797859ad" + "NORTHEUROPE:20210409T081612Z:88e445c5-b995-49dc-888d-ec42dff56522" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -561,10 +561,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:43 GMT" + "Fri, 09 Apr 2021 08:16:12 GMT" ], "Content-Length": [ - "3077" + "6125" ], "Content-Type": [ "application/json; charset=utf-8" @@ -573,26 +573,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"rimckenn@microsoft.com\",\r\n \"phone\": \"2134234243\"\r\n }\r\n ],\r\n \"peerName\": \"L3 LLC\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestCenturyLink\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"701 Network\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"legacy701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/legacy701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"CenturyLink\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3356\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 58969,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"nocadmin@keralavisionisp.com\",\r\n \"phone\": \"8086897055\"\r\n }\r\n ],\r\n \"peerName\": \"Kerala Vision Broadband\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS58969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS58969\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15133,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"prsanapa@microsoft.com\",\r\n \"phone\": \"1234567890\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestVerizon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network@mit.edu\",\r\n \"phone\": \"\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 101,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@pnw-gigapop.net\",\r\n \"phone\": \"+18889345580\"\r\n }\r\n ],\r\n \"peerName\": \"Pacific Northwest Gigapop\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS101\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS101\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 6762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network.noc@tisparkle.com\",\r\n \"phone\": \"+390652744444\"\r\n }\r\n ],\r\n \"peerName\": \"Telecom Italia Sparkle\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS6762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 9116,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@012.net\",\r\n \"phone\": \"+972722003890\"\r\n }\r\n ],\r\n \"peerName\": \"012 Smile Telecom\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS9116\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMDEwOC1HbG9iYWw2OTk5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47880-Global7863?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80Nzg4MC1HbG9iYWw3ODYzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "902ebe5a-a943-484e-8f68-f7240aac4b9c" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -603,16 +603,16 @@ "no-cache" ], "x-ms-request-id": [ - "15e7a6d7-c69d-4bc5-b394-503fb46948f5" + "35cb8007-d657-4f99-b45d-b5af9e5a5900" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "9768f6b6-cb69-4f17-a40d-a3b1663efb61" + "98250026-35f1-4085-9fb2-7ec3a33d18c1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212238Z:9768f6b6-cb69-4f17-a40d-a3b1663efb61" + "NORTHEUROPE:20210409T081601Z:98250026-35f1-4085-9fb2-7ec3a33d18c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,7 +621,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:37 GMT" + "Fri, 09 Apr 2021 08:16:01 GMT" ], "Expires": [ "-1" @@ -634,22 +634,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37446-Global9317?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNzQ0Ni1HbG9iYWw5MzE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2305-Global7017?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMzA1LUdsb2JhbDcwMTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cb38735-1885-47f3-9058-e1deccb6727f" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -660,16 +660,16 @@ "no-cache" ], "x-ms-request-id": [ - "feb6a745-39cb-4a7a-a731-b89deaf0aecf" + "b955f2ee-b643-4bfa-86c9-9091c9e3124a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "dd4b9c9b-7459-4dc3-93e0-d65922a1875a" + "6a6c82ac-87d1-4aaa-9218-97ad24483b2e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212238Z:dd4b9c9b-7459-4dc3-93e0-d65922a1875a" + "NORTHEUROPE:20210409T081602Z:6a6c82ac-87d1-4aaa-9218-97ad24483b2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,7 +678,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:38 GMT" + "Fri, 09 Apr 2021 08:16:01 GMT" ], "Expires": [ "-1" @@ -691,22 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xMDc4LUdsb2JhbDkwODA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15401-Global8451?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNTQwMS1HbG9iYWw4NDUxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "688e8cdf-14d5-4161-b3f6-69b7882fd62e" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -717,16 +717,16 @@ "no-cache" ], "x-ms-request-id": [ - "bc0845b0-f401-40b0-8464-7eec33eda3e5" + "38b17a08-1831-45f6-afea-791d8de30fe3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "0cd89a8c-c888-4df7-a7f6-d737a313af9e" + "c44dc3a2-8179-411f-8499-602e6dd583f2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212238Z:0cd89a8c-c888-4df7-a7f6-d737a313af9e" + "NORTHEUROPE:20210409T081602Z:c44dc3a2-8179-411f-8499-602e6dd583f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,7 +735,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:38 GMT" + "Fri, 09 Apr 2021 08:16:01 GMT" ], "Expires": [ "-1" @@ -748,22 +748,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19487-Global2450?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xOTQ4Ny1HbG9iYWwyNDUwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global5358?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWw1MzU4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb49062-4bba-4404-8256-10f0f9b8c392" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -774,16 +774,16 @@ "no-cache" ], "x-ms-request-id": [ - "b3c3eafc-faa5-43cd-90fc-628c2fa8317b" + "8ff6cbef-6a65-4b04-848d-3f5efa6ab93c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14995" ], "x-ms-correlation-request-id": [ - "52a492b4-4f2e-476a-b275-5fa6c25d130a" + "f8447bf4-605c-42b7-a143-6ed15c655f18" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212239Z:52a492b4-4f2e-476a-b275-5fa6c25d130a" + "NORTHEUROPE:20210409T081603Z:f8447bf4-605c-42b7-a143-6ed15c655f18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +792,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:38 GMT" + "Fri, 09 Apr 2021 08:16:03 GMT" ], "Expires": [ "-1" @@ -805,22 +805,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29024-Global3559?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTAyNC1HbG9iYWwzNTU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57277-Global8023?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NzI3Ny1HbG9iYWw4MDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92bd85da-85ba-4ab0-9c8e-260d07ca2d29" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -831,16 +831,16 @@ "no-cache" ], "x-ms-request-id": [ - "4e2567f4-b68a-4393-9baf-6289c181fb39" + "b63ddcb1-8115-4eda-9e0d-7952e7bc7c62" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14994" ], "x-ms-correlation-request-id": [ - "4f6a3b66-1f69-4461-9b3c-6662dfe1e8c4" + "f0cb8891-e4cb-4fcd-adfe-84cd52a7bb37" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212239Z:4f6a3b66-1f69-4461-9b3c-6662dfe1e8c4" + "NORTHEUROPE:20210409T081603Z:f0cb8891-e4cb-4fcd-adfe-84cd52a7bb37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,7 +849,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:39 GMT" + "Fri, 09 Apr 2021 08:16:03 GMT" ], "Expires": [ "-1" @@ -862,22 +862,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64762-Global9257?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NDc2Mi1HbG9iYWw5MjU3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41103-Global9929?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80MTEwMy1HbG9iYWw5OTI5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c2cf11a-5837-442c-96aa-8cdce183acb0" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -888,16 +888,16 @@ "no-cache" ], "x-ms-request-id": [ - "75310311-bc8e-4353-8a57-b0587ccf6848" + "0cade740-cc22-43ef-af72-0d42678a18c0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14993" ], "x-ms-correlation-request-id": [ - "01ed817c-d36b-479a-aaf7-7552ed7e56d3" + "837e924d-b3b4-44ab-b88b-05a0639ac266" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212240Z:01ed817c-d36b-479a-aaf7-7552ed7e56d3" + "NORTHEUROPE:20210409T081604Z:837e924d-b3b4-44ab-b88b-05a0639ac266" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:39 GMT" + "Fri, 09 Apr 2021 08:16:03 GMT" ], "Expires": [ "-1" @@ -919,22 +919,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35092-Global1347?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNTA5Mi1HbG9iYWwxMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36652-Global7588?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNjY1Mi1HbG9iYWw3NTg4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ff43c90-b5e4-4119-a018-5db6ac1b05e7" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -945,16 +945,16 @@ "no-cache" ], "x-ms-request-id": [ - "b1e411f3-cab9-421c-898c-278f6ce84566" + "77c99547-e1a9-4992-8c08-01991943d5b4" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14992" ], "x-ms-correlation-request-id": [ - "ddde0090-c2e2-4f76-9668-acd281340dc2" + "063fac10-8f05-4b7d-b7c5-8e08bcd03dd3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212240Z:ddde0090-c2e2-4f76-9668-acd281340dc2" + "NORTHEUROPE:20210409T081604Z:063fac10-8f05-4b7d-b7c5-8e08bcd03dd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -963,7 +963,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:40 GMT" + "Fri, 09 Apr 2021 08:16:04 GMT" ], "Expires": [ "-1" @@ -976,22 +976,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62858-Global4971?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82Mjg1OC1HbG9iYWw0OTcxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26069-Global158?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNjA2OS1HbG9iYWwxNTg/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "571e4526-f029-4d79-9bde-a5147b90dc9a" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -1002,16 +1002,16 @@ "no-cache" ], "x-ms-request-id": [ - "0e3fa834-af5f-47bb-ba8f-abc071b64a7d" + "a19af275-f07e-451f-b7d2-775df6fe4b19" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14992" + "14991" ], "x-ms-correlation-request-id": [ - "bf6aae80-8818-46be-8d1b-0e4a52918e31" + "77ad46aa-0772-4e0d-b9e0-77e0bb3733f8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212241Z:bf6aae80-8818-46be-8d1b-0e4a52918e31" + "NORTHEUROPE:20210409T081605Z:77ad46aa-0772-4e0d-b9e0-77e0bb3733f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1020,7 +1020,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:40 GMT" + "Fri, 09 Apr 2021 08:16:04 GMT" ], "Expires": [ "-1" @@ -1033,22 +1033,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54292-Global9989?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81NDI5Mi1HbG9iYWw5OTg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3341-Global4538?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMzQxLUdsb2JhbDQ1Mzg/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdf954a6-b697-45fd-8ce1-493fda30ad8f" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -1059,16 +1059,16 @@ "no-cache" ], "x-ms-request-id": [ - "38d614dd-1942-4abe-9969-0b247c125a5f" + "417f4316-45a9-4479-8b46-a9a24c0d6ae1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14991" + "14990" ], "x-ms-correlation-request-id": [ - "37416754-9096-460b-afe1-319da3c62cb8" + "ee94974b-ef8c-4a05-85a5-b0de1bd59616" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212241Z:37416754-9096-460b-afe1-319da3c62cb8" + "NORTHEUROPE:20210409T081605Z:ee94974b-ef8c-4a05-85a5-b0de1bd59616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,7 +1077,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:41 GMT" + "Fri, 09 Apr 2021 08:16:05 GMT" ], "Expires": [ "-1" @@ -1090,22 +1090,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31160-Global8313?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMTE2MC1HbG9iYWw4MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16923-Global5214?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNjkyMy1HbG9iYWw1MjE0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7161bd23-b2f6-4ad3-9e64-825820f7400e" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -1116,16 +1116,16 @@ "no-cache" ], "x-ms-request-id": [ - "161f5c97-875f-462a-aa50-8e5e44ced0bd" + "8b4a9599-2ffc-4838-9b6a-d41c65318d4e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14990" + "14989" ], "x-ms-correlation-request-id": [ - "03df76b5-a58c-4a32-874c-f90218819369" + "b0f9d77c-722a-41d3-ad2b-8e441e0d6a54" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212242Z:03df76b5-a58c-4a32-874c-f90218819369" + "NORTHEUROPE:20210409T081606Z:b0f9d77c-722a-41d3-ad2b-8e441e0d6a54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1134,7 +1134,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:41 GMT" + "Fri, 09 Apr 2021 08:16:05 GMT" ], "Expires": [ "-1" @@ -1147,22 +1147,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/30433-Global7451?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMDQzMy1HbG9iYWw3NDUxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25056-Global4529?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNTA1Ni1HbG9iYWw0NTI5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9b454ce-4583-46ad-bb73-27d31be63470" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -1173,16 +1173,16 @@ "no-cache" ], "x-ms-request-id": [ - "7aec2cba-ee0b-46d0-b79e-d4a15c52f613" + "66e9c1eb-8503-4e48-973a-245ab61f16c7" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14989" + "14988" ], "x-ms-correlation-request-id": [ - "d3951d7d-a8f2-4b72-a042-22a9313f6739" + "f1d9adaa-2ad0-4817-bf31-80e006df8fea" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212242Z:d3951d7d-a8f2-4b72-a042-22a9313f6739" + "NORTHEUROPE:20210409T081606Z:f1d9adaa-2ad0-4817-bf31-80e006df8fea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,7 +1191,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:41 GMT" + "Fri, 09 Apr 2021 08:16:06 GMT" ], "Expires": [ "-1" @@ -1204,22 +1204,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global1475?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWwxNDc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MDM0MC1HbG9iYWw1NDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61e96576-c2ce-49d2-a453-dd64f1ac6599" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -1230,16 +1230,16 @@ "no-cache" ], "x-ms-request-id": [ - "20024490-9626-461a-aa56-08ddff0dfb72" + "b31ef41e-c6af-4279-9704-03e9a7e330fe" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14988" + "14987" ], "x-ms-correlation-request-id": [ - "ad346303-b3ad-4fd9-8b79-40a7627308f7" + "5b2584cd-e84f-4d19-9264-99133fa2cc3f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212242Z:ad346303-b3ad-4fd9-8b79-40a7627308f7" + "NORTHEUROPE:20210409T081607Z:5b2584cd-e84f-4d19-9264-99133fa2cc3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1248,7 +1248,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:42 GMT" + "Fri, 09 Apr 2021 08:16:06 GMT" ], "Expires": [ "-1" @@ -1261,22 +1261,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/14105-Global7074?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNDEwNS1HbG9iYWw3MDc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMzU4NC1HbG9iYWwyNzI4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5718b512-d1f9-46a8-b9ac-4bb5e4daa2ea" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -1287,16 +1287,16 @@ "no-cache" ], "x-ms-request-id": [ - "6c2c7ab6-9941-4242-923d-8bcbb2c869b9" + "86b71617-a5dd-4adb-bd7f-030c9d6543dc" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14987" + "14986" ], "x-ms-correlation-request-id": [ - "a68c27c3-b7fc-46bb-ac32-bf300d3e4154" + "c6cc415e-ed9e-46ee-9892-7348b88d4e4c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212243Z:a68c27c3-b7fc-46bb-ac32-bf300d3e4154" + "NORTHEUROPE:20210409T081607Z:c6cc415e-ed9e-46ee-9892-7348b88d4e4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1305,7 +1305,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:42 GMT" + "Fri, 09 Apr 2021 08:16:07 GMT" ], "Expires": [ "-1" @@ -1318,22 +1318,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52243-Global6140?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MjI0My1HbG9iYWw2MTQwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNzY4NS1HbG9iYWw1OTgzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbf93cc4-4432-4b55-a015-18ada39b3f07" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -1344,16 +1344,16 @@ "no-cache" ], "x-ms-request-id": [ - "7b21d2b6-76c1-43aa-953e-7350ec51077e" + "84d88276-9e57-43b0-bc56-d4f433a1fe38" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14986" + "14985" ], "x-ms-correlation-request-id": [ - "d8365ef6-ebdf-4475-a8b5-77f5dc50e564" + "86b4a927-04fe-497f-8f7b-ac14fc97decf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212243Z:d8365ef6-ebdf-4475-a8b5-77f5dc50e564" + "NORTHEUROPE:20210409T081608Z:86b4a927-04fe-497f-8f7b-ac14fc97decf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1362,7 +1362,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:43 GMT" + "Fri, 09 Apr 2021 08:16:07 GMT" ], "Expires": [ "-1" @@ -1375,22 +1375,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29520-Global4354?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTUyMC1HbG9iYWw0MzU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48411-Global2390?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80ODQxMS1HbG9iYWwyMzkwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3015898d-e34f-4f97-a817-3100e6215407" + "63eb358d-dc3a-47c3-919d-b356c05e5263" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -1401,16 +1401,472 @@ "no-cache" ], "x-ms-request-id": [ - "f48d0848-1662-400b-ae82-bf3eab315452" + "5a044e38-2120-4dfa-a124-49b5a4a308f4" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14985" + "14984" + ], + "x-ms-correlation-request-id": [ + "b338f1ad-849e-40c6-8505-6dc99a11002d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T081608Z:b338f1ad-849e-40c6-8505-6dc99a11002d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 08:16:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/8682-Global4132?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy84NjgyLUdsb2JhbDQxMzI/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63eb358d-dc3a-47c3-919d-b356c05e5263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "59562d4c-900a-492a-93ee-c01792cd0395" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "0e2ec6e2-2a28-46a2-b6a1-7cd910c58030" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T081609Z:0e2ec6e2-2a28-46a2-b6a1-7cd910c58030" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 08:16:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19703-Global977?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xOTcwMy1HbG9iYWw5Nzc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63eb358d-dc3a-47c3-919d-b356c05e5263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98e22da1-21cd-4262-a3cc-7aa72dd7341a" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "361bf689-707f-4a3d-b48a-1013f49ed336" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T081609Z:361bf689-707f-4a3d-b48a-1013f49ed336" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 08:16:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMjI0Ny1HbG9iYWwxNTQzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63eb358d-dc3a-47c3-919d-b356c05e5263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d7707b12-5a68-4f65-b37b-3f995860aa56" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "eefc0c2e-fca3-437d-bfb6-5358635c73ea" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T081610Z:eefc0c2e-fca3-437d-bfb6-5358635c73ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 08:16:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/792-Global3027?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy83OTItR2xvYmFsMzAyNz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63eb358d-dc3a-47c3-919d-b356c05e5263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b62ef3b1-c362-4b53-8125-dcc1dcfaae01" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "b77eef5d-5eb4-48bf-aca7-11b603a11b45" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T081610Z:b77eef5d-5eb4-48bf-aca7-11b603a11b45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 08:16:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44208-Global4565?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NDIwOC1HbG9iYWw0NTY1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63eb358d-dc3a-47c3-919d-b356c05e5263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "465812a1-a5a6-4fcd-a0bf-0eefd5b6f398" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "4c94a26b-3e31-45a9-8085-d85e48a3f9ea" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T081611Z:4c94a26b-3e31-45a9-8085-d85e48a3f9ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 08:16:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/63102-Global8850?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MzEwMi1HbG9iYWw4ODUwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63eb358d-dc3a-47c3-919d-b356c05e5263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "075baaec-d725-42f9-a535-ee9858eecfb1" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "c11122bd-ed9c-458b-89f9-38c79bb33392" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T081611Z:c11122bd-ed9c-458b-89f9-38c79bb33392" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 08:16:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/26030-Global4868?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yNjAzMC1HbG9iYWw0ODY4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63eb358d-dc3a-47c3-919d-b356c05e5263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3c0ea27b-9274-42f2-b805-a51a6160033e" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "e7d52934-edb4-42d4-95b6-d6c734de712f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T081612Z:e7d52934-edb4-42d4-95b6-d6c734de712f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 08:16:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36646-Global2523?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNjY0Ni1HbG9iYWwyNTIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63eb358d-dc3a-47c3-919d-b356c05e5263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "906c5196-af87-4f5d-a133-58904642d56c" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14976" ], "x-ms-correlation-request-id": [ - "899677d7-af50-4f21-90fd-2bbc9ba45858" + "e375ee81-405a-471b-a9bf-5a0efe2bf3f3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212244Z:899677d7-af50-4f21-90fd-2bbc9ba45858" + "NORTHEUROPE:20210409T081612Z:e375ee81-405a-471b-a9bf-5a0efe2bf3f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,7 +1875,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:43 GMT" + "Fri, 09 Apr 2021 08:16:12 GMT" ], "Expires": [ "-1" @@ -1434,12 +1890,12 @@ ], "Names": { "Test-ListPeerAsn": [ - "14105-Global7074", - "AS14105-Global2057", - "52243-Global6140", - "AS52243-Global4305", - "29520-Global4354", - "AS29520-Global1621" + "15401-Global8451", + "AS15401-Global8739", + "2305-Global7017", + "AS2305-Global8472", + "47880-Global7863", + "AS47880-Global9380" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestNewPeerAsn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestNewPeerAsn.json index e816894c5174..30d862143b29 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestNewPeerAsn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestNewPeerAsn.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global2679?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWwyNjc5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global9235?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWw5MjM1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 10316,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps346.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps346.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps346\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 51339,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps8857.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps8857.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps8857\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9ceb709e-1283-497b-99d4-c43829c8e05b" + "25bed6b6-e699-482f-8ee9-661067742bf6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "347" + "350" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "cce6c477-d7ed-4597-bca9-42bfe8f2b913" + "814181e4-b52c-435d-aeba-fdb3b3e6ca0f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "394e6e27-335e-4542-b3ce-4ce144f2fcb7" + "470833aa-91d4-447c-b6f5-73d99dc4e49f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212131Z:394e6e27-335e-4542-b3ce-4ce144f2fcb7" + "NORTHEUROPE:20210409T081410Z:470833aa-91d4-447c-b6f5-73d99dc4e49f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:21:30 GMT" + "Fri, 09 Apr 2021 08:14:09 GMT" ], "Content-Length": [ - "560" + "564" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 10316,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps346.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps346.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps346\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"Global2679\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global2679\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 51339,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps8857.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps8857.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps8857\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"Global9235\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global9235\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global2679?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWwyNjc5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global9235?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWw5MjM1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dd287bd-5541-4fff-a85c-14f9fd8f90a9" + "448e73be-671f-4a66-970f-9f20f40de84c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-request-id": [ - "f9eb6ca9-fb0d-4e43-bbd0-e108f8bc6a49" + "425e80b7-3876-4905-8170-ae6e1992e2ff" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "cd669bc5-7e30-4193-a747-d8a3618ebce1" + "d540f180-01d1-41dd-8b8a-5f08328e8421" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212131Z:cd669bc5-7e30-4193-a747-d8a3618ebce1" + "NORTHEUROPE:20210409T081410Z:d540f180-01d1-41dd-8b8a-5f08328e8421" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:21:31 GMT" + "Fri, 09 Apr 2021 08:14:09 GMT" ], "Content-Length": [ - "560" + "564" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 10316,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps346.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps346.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps346\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"Global2679\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global2679\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 51339,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@ps8857.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@ps8857.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"ps8857\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"Global9235\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global9235\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global2679?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWwyNjc5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Global9235?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9HbG9iYWw5MjM1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "939ac60e-f22f-4508-8f9f-67242ea52b2c" + "d226f26b-b41d-4526-a12a-a62b7f183813" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -153,16 +153,16 @@ "no-cache" ], "x-ms-request-id": [ - "678f8eff-88ed-448c-b953-bc7b292ca254" + "04886d16-3a40-4d64-96f9-4042fd8fffd6" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "13ce1a97-9e10-4dab-9171-510b43319710" + "ec8bdf19-bfd1-4b33-8e02-3e0a49f5acec" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212132Z:13ce1a97-9e10-4dab-9171-510b43319710" + "NORTHEUROPE:20210409T081410Z:ec8bdf19-bfd1-4b33-8e02-3e0a49f5acec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:21:31 GMT" + "Fri, 09 Apr 2021 08:14:10 GMT" ], "Expires": [ "-1" @@ -186,8 +186,8 @@ ], "Names": { "Test-NewPeerAsn": [ - "Global2679", - "ps346" + "Global9235", + "ps8857" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestRemovePeerAsn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestRemovePeerAsn.json index 573322495508..764c3dfbbf80 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestRemovePeerAsn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestRemovePeerAsn.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/9367-Global1840?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy85MzY3LUdsb2JhbDE4NDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45950-Global6638?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NTk1MC1HbG9iYWw2NjM4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 9367,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS9367-Global9324\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 45950,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS45950-Global1215\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2dc040aa-705b-48e9-9d4a-f0acaad07a19" + "d4056a69-5b1d-4268-b89a-eb57b6b75841" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "382" + "386" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "4c0de89c-524f-4962-bb29-08f272340d48" + "7005c180-6249-46eb-9c22-b2257a7fa292" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "e087b574-8d5c-4d31-abca-f3d1f4290542" + "b5d39607-fa4d-4e94-bf20-1acdd25b87a6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212156Z:e087b574-8d5c-4d31-abca-f3d1f4290542" + "NORTHEUROPE:20210409T081455Z:b5d39607-fa4d-4e94-bf20-1acdd25b87a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:21:56 GMT" + "Fri, 09 Apr 2021 08:14:54 GMT" ], "Content-Length": [ - "605" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 9367,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS9367-Global9324\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"9367-Global1840\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/9367-Global1840\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 45950,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS45950-Global1215\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"45950-Global6638\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45950-Global6638\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/9367-Global1840?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy85MzY3LUdsb2JhbDE4NDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45950-Global6638?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NTk1MC1HbG9iYWw2NjM4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 9367,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS9367-Global9324\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 45950,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS45950-Global1215\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12d333c1-12d5-42ba-a77b-b9bdcfd41409" + "0779e66f-5081-4e76-b2b1-a171bdad61ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "418" + "422" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "ad441635-7003-405d-b3c2-573cbe18a7a0" + "b3a8a8f9-823b-4210-b134-3461e29dd9f6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "56" + "58" ], "x-ms-correlation-request-id": [ - "3d4f0fd7-4c49-4a4e-b9f7-75a9b087bf55" + "f98eb336-b783-4501-ae74-1f5140850059" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212157Z:3d4f0fd7-4c49-4a4e-b9f7-75a9b087bf55" + "NORTHEUROPE:20210409T081457Z:f98eb336-b783-4501-ae74-1f5140850059" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:21:57 GMT" + "Fri, 09 Apr 2021 08:14:56 GMT" ], "Content-Length": [ - "606" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 9367,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS9367-Global9324\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"9367-Global1840\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/9367-Global1840\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 45950,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS45950-Global1215\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"45950-Global6638\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45950-Global6638\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/9367-Global1840?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy85MzY3LUdsb2JhbDE4NDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45950-Global6638?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NTk1MC1HbG9iYWw2NjM4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11ea8377-bfe5-4111-be6d-f5b912dbd51d" + "fb213222-465d-4a3b-8e85-b29ce8dd8606" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "848cdc67-2c32-4c93-bf66-1133260f0de5" + "cedd8b5c-f710-48de-a8cc-212563a008a9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "6940ab5e-a3bc-47e0-b97b-cced3ac8981a" + "1ebb13eb-e4e0-49b7-86e3-6a5bc4a57d46" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212159Z:6940ab5e-a3bc-47e0-b97b-cced3ac8981a" + "NORTHEUROPE:20210409T081459Z:1ebb13eb-e4e0-49b7-86e3-6a5bc4a57d46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:21:59 GMT" + "Fri, 09 Apr 2021 08:14:59 GMT" ], "Content-Length": [ - "606" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 9367,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS9367-Global9324.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS9367-Global9324\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"9367-Global1840\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/9367-Global1840\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 45950,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS45950-Global1215.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS45950-Global1215\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"45950-Global6638\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45950-Global6638\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/9367-Global1840?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy85MzY3LUdsb2JhbDE4NDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45950-Global6638?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NTk1MC1HbG9iYWw2NjM4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "396dc1c2-0442-4a33-9aac-bbfb3d6d343f" + "bf791e16-3519-46ab-9994-771eeafc7505" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "9bbe6771-6ede-4810-b7e4-d7511fa22de9" + "dec34ad5-9591-42e8-971b-be682492a576" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "27d8a966-57a9-4a6a-b4e5-2a0690d7f48e" + "9a64678a-21f3-4f98-a19f-6c0056bd5f7c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212200Z:27d8a966-57a9-4a6a-b4e5-2a0690d7f48e" + "NORTHEUROPE:20210409T081500Z:9a64678a-21f3-4f98-a19f-6c0056bd5f7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:00 GMT" + "Fri, 09 Apr 2021 08:15:00 GMT" ], "Content-Length": [ - "68" + "91" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,26 +249,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/9367-Global1840?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy85MzY3LUdsb2JhbDE4NDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45950-Global6638?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy80NTk1MC1HbG9iYWw2NjM4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7d52f7d-10ef-4ec5-997d-94de63ddac61" + "271eb90c-d476-431b-a7ee-d9d7307a9640" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -279,16 +279,16 @@ "no-cache" ], "x-ms-request-id": [ - "d79af980-4515-4f4b-be8f-b9ed7c13ebef" + "2386790d-9d4f-4ee9-b27a-600ed8bb1002" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "54304aca-9620-4eef-a749-ce921a5e683c" + "02adc56d-fad8-4d10-9ed4-cdd4baaee3a5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212200Z:54304aca-9620-4eef-a749-ce921a5e683c" + "NORTHEUROPE:20210409T081500Z:02adc56d-fad8-4d10-9ed4-cdd4baaee3a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,7 +297,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:22:00 GMT" + "Fri, 09 Apr 2021 08:14:59 GMT" ], "Expires": [ "-1" @@ -312,8 +312,8 @@ ], "Names": { "Test-RemovePeerAsn": [ - "9367-Global1840", - "AS9367-Global9324" + "45950-Global6638", + "AS45950-Global1215" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestSetPeerAsn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestSetPeerAsn.json index ff088832a7d9..e1f0e2bf9fa6 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestSetPeerAsn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringAsnTests/TestSetPeerAsn.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NDAyNS1HbG9iYWw3Mzg3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MDk0NC1HbG9iYWwyOTMzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60944,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60944-Global1316\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e49b4fac-76eb-4fdc-8d4e-ab9b077220ec" + "018eb721-1eaf-4efc-ab94-d26a4df00279" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "6cabb2ba-1edc-4655-abb1-2726451705a2" + "0b432399-e5b1-444b-b31f-050b802d0020" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "c020e826-7aa5-42ed-9106-e6a740378525" + "2f7d6a26-87b7-4fcd-9f37-212e4697c9b5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212314Z:c020e826-7aa5-42ed-9106-e6a740378525" + "NORTHEUROPE:20210409T081658Z:2f7d6a26-87b7-4fcd-9f37-212e4697c9b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:23:14 GMT" + "Fri, 09 Apr 2021 08:16:58 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"64025-Global7387\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60944,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60944-Global1316\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60944-Global2933\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NDAyNS1HbG9iYWw3Mzg3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MDk0NC1HbG9iYWwyOTMzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60944,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60944-Global1316\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "624ccb17-4f80-4df6-a869-996583f49053" + "eb965986-b34f-4ae5-b57d-3e6e1fd2f3d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "198fd3a3-7f88-4264-9f4c-aaeeb74f31b3" + "0f14858c-6a7a-4e1c-a664-438adbc975f3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "8d04178e-e5cf-44b3-9d1a-a2235253558c" + "27b25c52-7a34-4748-b574-5990db697a7c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212316Z:8d04178e-e5cf-44b3-9d1a-a2235253558c" + "NORTHEUROPE:20210409T081659Z:27b25c52-7a34-4748-b574-5990db697a7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:23:16 GMT" + "Fri, 09 Apr 2021 08:16:59 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"64025-Global7387\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60944,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60944-Global1316\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60944-Global2933\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NDAyNS1HbG9iYWw3Mzg3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MDk0NC1HbG9iYWwyOTMzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps5572@64025-Global7387.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60944,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps1934@60944-Global2933.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60944-Global1316\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3be56840-7a46-4992-b55a-29df658e577d" + "ae9837ae-1ce0-4cf3-8f11-9a882cb9a88c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -165,16 +165,16 @@ "no-cache" ], "x-ms-request-id": [ - "cfcddbff-575f-46ad-b330-b5fa8f29f867" + "be251661-e8f4-4d98-a4fd-a2b2ce78e78c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "55" ], "x-ms-correlation-request-id": [ - "3b97508b-4298-4c2d-94cd-ceb31ed18c15" + "1c9704fc-57bf-4601-a633-aefe53fe4340" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212319Z:3b97508b-4298-4c2d-94cd-ceb31ed18c15" + "NORTHEUROPE:20210409T081702Z:1c9704fc-57bf-4601-a633-aefe53fe4340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:23:18 GMT" + "Fri, 09 Apr 2021 08:17:02 GMT" ], "Content-Length": [ "613" @@ -195,26 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps5572@64025-Global7387.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"64025-Global7387\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60944,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps1934@60944-Global2933.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60944-Global1316\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60944-Global2933\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82NDAyNS1HbG9iYWw3Mzg3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MDk0NC1HbG9iYWwyOTMzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee3e125f-43c5-4f36-a19d-05eb1225ba04" + "f3064671-dbc0-41af-8739-7828076e57a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -225,16 +225,16 @@ "no-cache" ], "x-ms-request-id": [ - "bc2a7810-8cc0-465b-87c1-fac0a107b751" + "cb7addfa-ec06-4d5e-8d8b-c95e9072706c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "8e06d4e9-92b0-4f8d-8e8a-72b38674c7e4" + "8d01ebf5-ce3a-4009-90a5-6994a75907b9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212318Z:8e06d4e9-92b0-4f8d-8e8a-72b38674c7e4" + "NORTHEUROPE:20210409T081702Z:8d01ebf5-ce3a-4009-90a5-6994a75907b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,7 +243,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:23:18 GMT" + "Fri, 09 Apr 2021 08:17:02 GMT" ], "Content-Length": [ "612" @@ -255,26 +255,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"64025-Global7387\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60944,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60944-Global1316\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60944-Global2933\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc1a7587-5923-453d-bf7e-7b0c53475ed0" + "afd9cb92-0d98-47c2-8604-3c2b9fbb967a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -285,16 +285,16 @@ "no-cache" ], "x-ms-request-id": [ - "6cefb7c0-2eb2-4973-bdba-3e88ac9bac14" + "cab92cee-adca-4a27-a41b-f6934656f57f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "57" ], "x-ms-correlation-request-id": [ - "5fbb1193-f8d1-4526-bcc9-35f3e372652b" + "03ce45ba-e0e8-445f-9f05-e3f0a7a982d0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212319Z:5fbb1193-f8d1-4526-bcc9-35f3e372652b" + "NORTHEUROPE:20210409T081703Z:03ce45ba-e0e8-445f-9f05-e3f0a7a982d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,10 +303,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:23:18 GMT" + "Fri, 09 Apr 2021 08:17:02 GMT" ], "Content-Length": [ - "3781" + "6829" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,15 +315,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"rimckenn@microsoft.com\",\r\n \"phone\": \"2134234243\"\r\n }\r\n ],\r\n \"peerName\": \"L3 LLC\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestCenturyLink\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"701 Network\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"legacy701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/legacy701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64025,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps5572@64025-Global7387.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS64025-Global1751.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS64025-Global1751\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"64025-Global7387\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64025-Global7387\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 12302,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS12302\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 64537,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS64537\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15169,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Google\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS15169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 8075,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Default\",\r\n \"email\": \"noc@contoso.com\",\r\n \"phone\": \"888-888-8889\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS8075\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS8075\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3356,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"CenturyLink\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3356\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 701,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"f@d.c\",\r\n \"phone\": \"123123123\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS701\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 58969,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"nocadmin@keralavisionisp.com\",\r\n \"phone\": \"8086897055\"\r\n }\r\n ],\r\n \"peerName\": \"Kerala Vision Broadband\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS58969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS58969\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 15133,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"prsanapa@microsoft.com\",\r\n \"phone\": \"1234567890\"\r\n }\r\n ],\r\n \"peerName\": \"Verizon\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"TestVerizon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 3,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network@mit.edu\",\r\n \"phone\": \"\"\r\n }\r\n ],\r\n \"peerName\": \"Microsoft\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS3\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 101,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@pnw-gigapop.net\",\r\n \"phone\": \"+18889345580\"\r\n }\r\n ],\r\n \"peerName\": \"Pacific Northwest Gigapop\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS101\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS101\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 6762,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"network.noc@tisparkle.com\",\r\n \"phone\": \"+390652744444\"\r\n }\r\n ],\r\n \"peerName\": \"Telecom Italia Sparkle\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS6762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 9116,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc@012.net\",\r\n \"phone\": \"+972722003890\"\r\n }\r\n ],\r\n \"peerName\": \"012 Smile Telecom\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS9116\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 60944,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"ps1934@60944-Global2933.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60944-Global1316.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60944-Global1316\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60944-Global2933\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60944-Global2933\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-SetPeerAsn": [ - "64025-Global7387", - "AS64025-Global1751", - "ps5572" + "60944-Global2933", + "AS60944-Global1316", + "ps1934" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceByResourceGroup.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceByResourceGroup.json index 46642ebbefa4..dad7ff71a019 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceByResourceGroup.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceByResourceGroup.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b17f794-2648-42a5-a0d6-5832dcb0389a" + "94166b6b-6f96-4925-93e1-f83ac3e70045" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "8407da3d-d8c6-40a4-88de-3af624afa52c" + "37dea56e-fcbd-42e9-9c5a-c4b034ebfd5f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "3673e2ce-b15c-4dc3-a80d-9d79d6e8eb47" + "58101fef-195a-46eb-87d0-2037396a2df1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213716Z:3673e2ce-b15c-4dc3-a80d-9d79d6e8eb47" + "NORTHEUROPE:20210409T080846Z:58101fef-195a-46eb-87d0-2037396a2df1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:37:16 GMT" + "Fri, 09 Apr 2021 08:08:46 GMT" ], "Content-Length": [ - "141166" + "191674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,32 +57,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Australian Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Australian Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"New South Wales\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New South Wales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New South Wales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Queensland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Queensland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"South Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tasmania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tasmania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Victoria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Victoria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Victoria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Western Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Auvergne-Rhone-Alpes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auvergne-Rhone-Alpes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auvergne-Rhone-Alpes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bourgogne-Franche-Comte\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bourgogne-Franche-Comte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bourgogne-Franche-Comte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bretagne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bretagne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bretagne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Centre-Val de Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Centre-Val de Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Centre-Val de Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Corsica\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Corsica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Corsica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Grand Est\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Grand Est\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grand Est\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Hauts-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hauts-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hauts-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Ile-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ile-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ile-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Normandie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Normandie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Normandie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Nouvelle-Aquitaine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nouvelle-Aquitaine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nouvelle-Aquitaine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Occitanie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Occitanie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Occitanie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Pays de la Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pays de la Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pays de la Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Provence-Alpes-Cote d’Azur\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Provence-Alpes-Cote d’Azur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Provence-Alpes-Cote d’Azur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Baden-Wurttemberg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baden-Wurttemberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baden-Wurttemberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bavaria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bavaria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bavaria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Brandenburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brandenburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brandenburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bremen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bremen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bremen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hamburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hesse\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hesse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hesse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Lower Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lower Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lower Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Mecklenburg-Western Pomerania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mecklenburg-Western Pomerania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mecklenburg-Western Pomerania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"North Rhine-Westphalia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Rhine-Westphalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Rhine-Westphalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Rhineland-Palatinate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhineland-Palatinate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhineland-Palatinate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saarland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saarland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saarland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony-Anhalt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony-Anhalt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony-Anhalt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schleswig-Holstein\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schleswig-Holstein\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Thuringia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thuringia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thuringia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hong Kong\",\r\n \"state\": \"Hong Kong\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aichi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aichi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aichi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Akita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aomori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aomori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aomori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Chiba\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chiba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ehime\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ehime\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ehime\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gifu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gifu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gifu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gunma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gunma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gunma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hiroshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hiroshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiroshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hyogo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyogo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hyogo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ibaraki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ibaraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ibaraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ishikawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ishikawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ishikawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Iwate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iwate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iwate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagoshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagoshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagoshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kanagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kanagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kochi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kochi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kochi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kumamoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kumamoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumamoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kyoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kyoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Mie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyagi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyagi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyagi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyazaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyazaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyazaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagano\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagano\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagano\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagasaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagasaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagasaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Niigata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niigata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niigata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Oita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okinawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okinawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okinawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Osaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saitama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saitama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saitama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shimane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shimane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shizuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shizuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shizuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tochigi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tochigi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tochigi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tottori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tottori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tottori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Toyama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toyama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Toyama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Wakayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamagata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamagata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamagata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamaguchi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamaguchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamaguchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamanashi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamanashi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamanashi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Johor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Johor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kedah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kedah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kedah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kelantan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kelantan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kelantan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur \",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuala Lumpur \",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Melaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Negeri Sembilan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negeri Sembilan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pahang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pahang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pahang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perlis\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perlis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perlis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pulau Pinang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pulau Pinang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pulau Pinang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Sarawak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sarawak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sarawak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Selangor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selangor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Terengganu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Terengganu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Terengganu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Auckland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Bay of Plenty\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bay of Plenty\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bay of Plenty\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Canterbury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Canterbury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canterbury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Gisborne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gisborne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gisborne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Hawke’s Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawke’s Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawke’s Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manawatu-Wanganui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manawatu-Wanganui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Marlborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marlborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marlborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Nelson\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nelson\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nelson\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Northland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Taranaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taranaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taranaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Waikato\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waikato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waikato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Wellington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wellington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wellington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"West Coast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Coast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Coast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Singapore\",\r\n \"state\": \"Singapore\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eastern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Free State\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Free State\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Free State\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Gauteng\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gauteng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gauteng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"KwaZulu-Natal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"KwaZulu-Natal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/KwaZulu-Natal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Limpopo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limpopo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limpopo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Mpumalanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mpumalanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mpumalanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"North West\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North West\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North West\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Northern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Western Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Aberdeen City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aberdeen City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aberdeen City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Angus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Angus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Angus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Antrim and Newtownabbey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antrim and Newtownabbey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ards and North Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ards and North Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ards and North Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Argyll and Bute\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Argyll and Bute\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Argyll and Bute\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Armagh, Banbridge and Craigavon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Armagh, Banbridge and Craigavon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barking and Dagenham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barking and Dagenham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barking and Dagenham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bath and North East Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bath and North East Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bedford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bedford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bedford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Belfast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Belfast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belfast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bexley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bexley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bexley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Birmingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Birmingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Birmingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackburn with Darwen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackburn with Darwen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blaenau Gwent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blaenau Gwent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bolton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bolton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bournemouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bournemouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bournemouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bracknell Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bracknell Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bracknell Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bradford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bradford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bradford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bridgend\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bridgend\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bridgend\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brighton and Hove\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brighton and Hove\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bristol, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bristol, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bristol, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bromley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bromley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bromley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Buckinghamshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buckinghamshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buckinghamshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Caerphilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Caerphilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caerphilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Calderdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Calderdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calderdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cambridgeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cambridgeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cambridgeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Camden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Camden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cardiff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cardiff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cardiff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Carmarthenshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Carmarthenshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carmarthenshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Causeway Coast and Glens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeway Coast and Glens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Central Bedfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Central Bedfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ceredigion\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ceredigion\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceredigion\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire East\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire East\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire East\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire West and Chester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire West and Chester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire West and Chester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Clackmannanshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Clackmannanshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clackmannanshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Conwy\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Conwy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Conwy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cornwall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cornwall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cornwall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Coventry\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coventry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coventry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Croydon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Croydon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Croydon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cumbria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cumbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cumbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Darlington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Darlington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darlington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Denbighshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denbighshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denbighshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derby\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derby\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derby\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derbyshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derbyshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derbyshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derry and Strabane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derry and Strabane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derry and Strabane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Devon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Devon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Devon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Doncaster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Doncaster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Doncaster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dorset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dorset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dorset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dudley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dudley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dudley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dumfries and Galloway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dumfries and Galloway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dundee City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dundee City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dundee City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Durham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Durham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ealing\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ealing\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ealing\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Riding of Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Riding of Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edinburgh, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edinburgh, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Eilean Siar\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eilean Siar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eilean Siar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Enfield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enfield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enfield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Essex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Essex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Essex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Falkirk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Falkirk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Falkirk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fermanagh and Omagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fermanagh and Omagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fife\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fife\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fife\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Flintshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flintshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flintshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gateshead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gateshead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gateshead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Glasgow City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glasgow City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glasgow City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Greenwich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Greenwich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Greenwich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gwynedd\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gwynedd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gwynedd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hackney\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hackney\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hackney\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Halton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Halton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Halton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hammersmith and Fulham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hammersmith and Fulham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hammersmith and Fulham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Haringey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Haringey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haringey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Harrow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Harrow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harrow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hartlepool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hartlepool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hartlepool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Havering\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Havering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Havering\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Herefordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Herefordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herefordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hertfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hertfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hertfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Highland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Highland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Highland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hillingdon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hillingdon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hillingdon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hounslow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hounslow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hounslow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Inverclyde\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Inverclyde\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inverclyde\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Anglesey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Anglesey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Wight\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Wight\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Wight\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isles of Scilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isles of Scilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isles of Scilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Islington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Islington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kensington and Chelsea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kensington and Chelsea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kensington and Chelsea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Hull, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Hull, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kirklees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirklees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Knowsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Knowsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Knowsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lambeth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lambeth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lambeth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lancashire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lancashire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lancashire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leeds\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leeds\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leeds\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leicester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leicester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leicester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lewisham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lewisham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lewisham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisburn and Castlereagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisburn and Castlereagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Liverpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Liverpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liverpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"London\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/London\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Luton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Manchester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Medway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Medway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merthyr Tydfil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merthyr Tydfil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid Ulster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid Ulster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid Ulster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid and East Antrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid and East Antrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Midlothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midlothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midlothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Milton Keynes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milton Keynes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Milton Keynes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Monmouthshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Monmouthshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monmouthshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Moray\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neath Port Talbot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neath Port Talbot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newcastle upon Tyne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newcastle upon Tyne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newcastle upon Tyne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newry, Mourne and Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newry, Mourne and Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newry, Mourne and Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Norfolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Norfolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norfolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North East Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North East Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North East Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northamptonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northamptonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northamptonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northumberland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northumberland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northumberland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Nottingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nottingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nottingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oldham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oldham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oldham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Orkney Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Orkney Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orkney Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oxfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oxfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oxfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Pembrokeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pembrokeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pembrokeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Perth and Kinross\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth and Kinross\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perth and Kinross\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Peterborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Peterborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peterborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Plymouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plymouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plymouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Poole\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Poole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Portsmouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portsmouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portsmouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Powys\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Powys\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Powys\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Reading\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reading\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Reading\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redbridge\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redbridge\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redbridge\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redcar and Cleveland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redcar and Cleveland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhondda Cynon Taff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhondda Cynon Taff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Richmond upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Richmond upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Richmond upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rochdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rochdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rochdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rotherham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rotherham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rotherham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rutland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rutland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rutland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Salford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sandwell\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sandwell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sandwell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Scottish Borders, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Scottish Borders, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Scottish Borders, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sefton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sefton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sefton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sheffield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sheffield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sheffield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shetland Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shetland Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shetland Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shropshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shropshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shropshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Slough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Slough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Solihull\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solihull\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solihull\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southend-on-Sea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southend-on-Sea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southend-on-Sea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southwark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southwark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southwark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"St. Helens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"St. Helens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/St. Helens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stirling\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stirling\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stirling\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockton-on-Tees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockton-on-Tees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockton-on-Tees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stoke-on-Trent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stoke-on-Trent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Suffolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Suffolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suffolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sunderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sunderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sunderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sutton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sutton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sutton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swansea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swansea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swansea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swindon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swindon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swindon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tameside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tameside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tameside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Telford and Wrekin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Telford and Wrekin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telford and Wrekin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Thurrock\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurrock\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurrock\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torbay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torbay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torbay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torfaen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torfaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torfaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tower Hamlets\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tower Hamlets\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tower Hamlets\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Trafford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trafford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trafford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Vale of Glamorgan, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vale of Glamorgan, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vale of Glamorgan, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wakefield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakefield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakefield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Walsall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Walsall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Walsall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Waltham Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waltham Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waltham Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wandsworth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wandsworth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wandsworth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warrington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warrington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warrington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warwickshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warwickshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warwickshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Berkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Berkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Berkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Westminster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Westminster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westminster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wiltshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wiltshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wiltshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Windsor and Maidenhead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Windsor and Maidenhead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wirral\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wirral\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wirral\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wokingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wokingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wokingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wolverhampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wolverhampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wolverhampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Worcestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Worcestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Worcestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wrexham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wrexham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wrexham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Alabama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Alabama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alabama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arizona\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arizona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arizona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arkansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arkansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arkansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"California\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Colorado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Colorado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colorado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Connecticut\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Connecticut\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Connecticut\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delaware\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delaware\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"District of Columbia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"District of Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/District of Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Florida\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Florida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Florida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Georgia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Georgia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Georgia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Hawaii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawaii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawaii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Idaho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Idaho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idaho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Illinois\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Illinois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Illinois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Indiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Indiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Indiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Iowa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iowa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iowa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kentucky\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kentucky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentucky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Louisiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Louisiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louisiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maryland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maryland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maryland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Massachusetts\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Massachusetts\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Massachusetts\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Michigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Michigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Minnesota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minnesota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minnesota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Mississippi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mississippi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mississippi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Missouri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Missouri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Missouri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nebraska\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nebraska\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nebraska\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nevada\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nevada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nevada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Jersey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Jersey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Jersey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Mexico\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Ohio\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ohio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oklahoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oklahoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oklahoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oregon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oregon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oregon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Pennsylvania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pennsylvania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pennsylvania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Rhode Island\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhode Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhode Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Tennessee\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tennessee\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tennessee\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Texas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Texas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Texas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Utah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Vermont\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vermont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vermont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Washington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Washington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Washington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"West Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wisconsin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wisconsin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wisconsin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wyoming\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wyoming\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wyoming\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Australian Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Australian Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"New South Wales\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New South Wales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New South Wales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Queensland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Queensland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"South Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tasmania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tasmania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Victoria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Victoria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Victoria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Western Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Brussels-Capital Region\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels-Capital Region\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brussels-Capital Region\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Flanders\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flanders\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flanders\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Wallonia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wallonia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wallonia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Hovedstaden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hovedstaden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hovedstaden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Midtjylland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midtjylland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midtjylland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Nordjylland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nordjylland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nordjylland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Sjaelland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sjaelland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sjaelland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Syddanmark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Syddanmark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Syddanmark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Auvergne-Rhone-Alpes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auvergne-Rhone-Alpes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auvergne-Rhone-Alpes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bourgogne-Franche-Comte\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bourgogne-Franche-Comte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bourgogne-Franche-Comte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bretagne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bretagne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bretagne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Centre-Val de Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Centre-Val de Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Centre-Val de Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Corsica\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Corsica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Corsica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Grand Est\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Grand Est\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grand Est\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Hauts-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hauts-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hauts-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Ile-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ile-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ile-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Normandie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Normandie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Normandie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Nouvelle-Aquitaine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nouvelle-Aquitaine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nouvelle-Aquitaine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Occitanie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Occitanie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Occitanie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Pays de la Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pays de la Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pays de la Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Provence-Alpes-Cote d’Azur\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Provence-Alpes-Cote d’Azur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Provence-Alpes-Cote d’Azur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Baden-Wurttemberg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baden-Wurttemberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baden-Wurttemberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bavaria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bavaria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bavaria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Brandenburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brandenburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brandenburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bremen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bremen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bremen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hamburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hesse\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hesse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hesse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Lower Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lower Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lower Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Mecklenburg-Western Pomerania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mecklenburg-Western Pomerania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mecklenburg-Western Pomerania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"North Rhine-Westphalia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Rhine-Westphalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Rhine-Westphalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Rhineland-Palatinate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhineland-Palatinate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhineland-Palatinate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saarland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saarland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saarland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony-Anhalt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony-Anhalt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony-Anhalt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schleswig-Holstein\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schleswig-Holstein\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Thuringia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thuringia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thuringia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hong Kong\",\r\n \"state\": \"Hong Kong\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aichi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aichi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aichi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Akita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aomori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aomori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aomori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Chiba\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chiba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ehime\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ehime\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ehime\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gifu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gifu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gifu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gunma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gunma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gunma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hiroshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hiroshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiroshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hyogo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyogo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hyogo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ibaraki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ibaraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ibaraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ishikawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ishikawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ishikawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Iwate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iwate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iwate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagoshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagoshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagoshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kanagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kanagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kochi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kochi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kochi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kumamoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kumamoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumamoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kyoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kyoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Mie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyagi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyagi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyagi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyazaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyazaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyazaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagano\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagano\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagano\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagasaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagasaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagasaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Niigata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niigata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niigata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Oita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okinawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okinawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okinawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Osaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saitama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saitama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saitama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shimane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shimane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shizuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shizuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shizuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tochigi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tochigi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tochigi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tottori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tottori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tottori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Toyama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toyama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Toyama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Wakayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamagata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamagata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamagata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamaguchi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamaguchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamaguchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamanashi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamanashi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamanashi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Baringo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baringo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baringo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Bomet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bomet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bomet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Bungoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bungoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bungoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Busia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Busia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Busia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Elgeyo/Marakwet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Elgeyo/Marakwet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Elgeyo/Marakwet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Embu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Embu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Embu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Garissa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Garissa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Garissa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Homa Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Homa Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Homa Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Isiolo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isiolo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isiolo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kajiado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kajiado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kajiado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kakamega\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kakamega\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kakamega\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kericho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kericho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kericho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kiambu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiambu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kiambu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kilifi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kilifi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kilifi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kirinyaga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirinyaga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirinyaga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kisii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kisii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kisii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kisumu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kisumu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kisumu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kitui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kitui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kitui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kwale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kwale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kwale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Laikipia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Laikipia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Laikipia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Lamu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lamu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lamu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Machakos\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Machakos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Machakos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Makueni\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Makueni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Makueni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Marsabit\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marsabit\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marsabit\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Meru\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Meru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Meru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Migori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Migori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Migori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Mombasa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mombasa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mombasa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Murang’a\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Murang’a\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Murang’a\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nairobi City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nairobi City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nakuru\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nakuru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakuru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Namanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Namanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Namanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nandi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nandi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nandi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Narok\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Narok\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Narok\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyamira\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyamira\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyamira\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyandarua\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyandarua\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyandarua\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyeri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyeri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyeri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Samburu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Samburu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Samburu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Siaya\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Siaya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Siaya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Taita/Taveta\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taita/Taveta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taita/Taveta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Tana River\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tana River\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tana River\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Tharaka-Nithi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tharaka-Nithi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tharaka-Nithi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Trans Nzoia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trans Nzoia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trans Nzoia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Turkana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Turkana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Turkana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Uasin Gishu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Uasin Gishu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uasin Gishu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Vihiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vihiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vihiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Wajir\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wajir\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wajir\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"West Pokot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Pokot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Pokot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Johor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Johor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kedah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kedah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kedah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kelantan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kelantan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kelantan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur \",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuala Lumpur \",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Melaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Negeri Sembilan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negeri Sembilan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pahang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pahang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pahang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perlis\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perlis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perlis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pulau Pinang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pulau Pinang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pulau Pinang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Sarawak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sarawak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sarawak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Selangor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selangor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Terengganu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Terengganu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Terengganu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Drenthe\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Drenthe\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Drenthe\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Flevoland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flevoland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flevoland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Fryslan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fryslan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fryslan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Gelderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gelderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gelderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Groningen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Groningen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Groningen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Limburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Noord-Brabant\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Noord-Brabant\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Noord-Brabant\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Noord-Holland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Noord-Holland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Noord-Holland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Overijssel\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Overijssel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Overijssel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Utrecht\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utrecht\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utrecht\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Zeeland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zeeland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zeeland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Zuid-Holland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zuid-Holland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zuid-Holland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Auckland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Bay of Plenty\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bay of Plenty\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bay of Plenty\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Canterbury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Canterbury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canterbury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Gisborne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gisborne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gisborne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Hawke’s Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawke’s Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawke’s Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manawatu-Wanganui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manawatu-Wanganui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Marlborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marlborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marlborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Nelson\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nelson\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nelson\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Northland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Taranaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taranaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taranaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Waikato\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waikato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waikato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Wellington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wellington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wellington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"West Coast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Coast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Coast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Abia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Abia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Abia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Akwa Ibom\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akwa Ibom\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akwa Ibom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Anambra\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Anambra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Anambra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Bayelsa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bayelsa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bayelsa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Benue\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Benue\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Benue\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Cross River\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cross River\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cross River\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Delta\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ebonyi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ebonyi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ebonyi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Edo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ekiti\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ekiti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ekiti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Enugu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enugu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enugu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Federal Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Federal Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Federal Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Imo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Imo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Imo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kaduna\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kaduna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kaduna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kebbi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kebbi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kebbi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kogi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kogi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kogi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kwara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kwara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kwara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Lagos\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Nasarawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nasarawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nasarawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Niger\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niger\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niger\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ogun\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ogun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ogun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ondo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ondo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ondo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Osun\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Oyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Plateau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plateau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plateau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Rivers\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rivers\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rivers\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Sokoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sokoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sokoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Zamfara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zamfara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zamfara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Aveiro\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aveiro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aveiro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Beja\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Beja\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Beja\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Braga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Braga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Braganca\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Braganca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braganca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Castelo Branco\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Castelo Branco\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Castelo Branco\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Coimbra\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coimbra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coimbra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Evora\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Evora\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Evora\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Faro\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Faro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Faro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Guarda\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Guarda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guarda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Leiria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leiria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leiria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Lisboa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisboa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisboa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Portalegre\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portalegre\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portalegre\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Porto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Porto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Porto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Santarem\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santarem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Santarem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Setubal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Setubal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Setubal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Viana do Castelo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Viana do Castelo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viana do Castelo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Vila Real\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vila Real\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vila Real\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Viseu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Viseu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viseu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Singapore\",\r\n \"state\": \"Singapore\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eastern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Free State\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Free State\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Free State\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Gauteng\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gauteng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gauteng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"KwaZulu-Natal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"KwaZulu-Natal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/KwaZulu-Natal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Limpopo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limpopo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limpopo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Mpumalanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mpumalanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mpumalanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"North West\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North West\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North West\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Northern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Western Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Aargau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aargau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aargau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Appenzell Ausserrhoden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Appenzell Ausserrhoden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Appenzell Ausserrhoden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Appenzell Innerrhoden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Appenzell Innerrhoden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Appenzell Innerrhoden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Basel-Landschaft\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Basel-Landschaft\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basel-Landschaft\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Basel-Stadt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Basel-Stadt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basel-Stadt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Bern\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Fribourg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fribourg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fribourg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Geneve\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneve\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Geneve\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Glarus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glarus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glarus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Graubunden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Graubunden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Graubunden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Jura\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jura\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jura\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Luzern\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luzern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luzern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Neuchatel\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neuchatel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neuchatel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Nidwalden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nidwalden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nidwalden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Obwalden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Obwalden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Obwalden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Sankt Gallen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sankt Gallen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sankt Gallen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Schaffhausen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schaffhausen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schaffhausen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Schwyz\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schwyz\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schwyz\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Solothurn\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solothurn\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solothurn\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Thurgau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurgau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurgau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Ticino\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ticino\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ticino\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Uri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Uri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Valais\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Valais\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valais\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Vaud\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vaud\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vaud\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Zug\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zug\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zug\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Zurich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Aberdeen City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aberdeen City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aberdeen City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Angus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Angus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Angus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Antrim and Newtownabbey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antrim and Newtownabbey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ards and North Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ards and North Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ards and North Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Argyll and Bute\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Argyll and Bute\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Argyll and Bute\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Armagh, Banbridge and Craigavon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Armagh, Banbridge and Craigavon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barking and Dagenham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barking and Dagenham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barking and Dagenham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bath and North East Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bath and North East Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bedford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bedford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bedford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Belfast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Belfast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belfast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bexley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bexley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bexley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Birmingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Birmingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Birmingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackburn with Darwen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackburn with Darwen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blaenau Gwent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blaenau Gwent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bolton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bolton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bournemouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bournemouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bournemouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bracknell Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bracknell Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bracknell Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bradford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bradford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bradford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bridgend\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bridgend\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bridgend\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brighton and Hove\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brighton and Hove\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bristol, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bristol, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bristol, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bromley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bromley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bromley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Buckinghamshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buckinghamshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buckinghamshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Caerphilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Caerphilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caerphilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Calderdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Calderdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calderdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cambridgeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cambridgeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cambridgeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Camden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Camden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cardiff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cardiff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cardiff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Carmarthenshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Carmarthenshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carmarthenshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Causeway Coast and Glens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeway Coast and Glens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Central Bedfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Central Bedfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ceredigion\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ceredigion\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceredigion\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire East\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire East\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire East\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire West and Chester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire West and Chester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire West and Chester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Clackmannanshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Clackmannanshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clackmannanshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Conwy\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Conwy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Conwy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cornwall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cornwall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cornwall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Coventry\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coventry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coventry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Croydon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Croydon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Croydon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cumbria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cumbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cumbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Darlington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Darlington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darlington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Denbighshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denbighshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denbighshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derby\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derby\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derby\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derbyshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derbyshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derbyshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derry and Strabane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derry and Strabane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derry and Strabane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Devon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Devon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Devon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Doncaster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Doncaster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Doncaster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dorset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dorset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dorset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dudley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dudley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dudley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dumfries and Galloway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dumfries and Galloway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dundee City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dundee City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dundee City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Durham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Durham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ealing\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ealing\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ealing\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Riding of Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Riding of Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edinburgh, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edinburgh, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Eilean Siar\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eilean Siar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eilean Siar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Enfield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enfield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enfield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Essex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Essex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Essex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Falkirk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Falkirk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Falkirk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fermanagh and Omagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fermanagh and Omagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fife\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fife\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fife\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Flintshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flintshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flintshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gateshead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gateshead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gateshead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Glasgow City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glasgow City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glasgow City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Greenwich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Greenwich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Greenwich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gwynedd\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gwynedd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gwynedd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hackney\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hackney\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hackney\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Halton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Halton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Halton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hammersmith and Fulham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hammersmith and Fulham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hammersmith and Fulham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Haringey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Haringey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haringey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Harrow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Harrow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harrow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hartlepool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hartlepool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hartlepool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Havering\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Havering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Havering\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Herefordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Herefordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herefordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hertfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hertfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hertfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Highland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Highland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Highland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hillingdon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hillingdon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hillingdon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hounslow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hounslow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hounslow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Inverclyde\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Inverclyde\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inverclyde\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Anglesey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Anglesey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Wight\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Wight\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Wight\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isles of Scilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isles of Scilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isles of Scilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Islington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Islington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kensington and Chelsea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kensington and Chelsea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kensington and Chelsea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Hull, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Hull, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kirklees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirklees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Knowsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Knowsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Knowsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lambeth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lambeth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lambeth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lancashire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lancashire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lancashire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leeds\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leeds\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leeds\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leicester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leicester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leicester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lewisham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lewisham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lewisham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisburn and Castlereagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisburn and Castlereagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Liverpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Liverpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liverpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"London\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/London\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Luton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Manchester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Medway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Medway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merthyr Tydfil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merthyr Tydfil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid Ulster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid Ulster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid Ulster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid and East Antrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid and East Antrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Midlothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midlothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midlothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Milton Keynes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milton Keynes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Milton Keynes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Monmouthshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Monmouthshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monmouthshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Moray\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neath Port Talbot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neath Port Talbot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newcastle upon Tyne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newcastle upon Tyne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newcastle upon Tyne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newry, Mourne and Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newry, Mourne and Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newry, Mourne and Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Norfolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Norfolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norfolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North East Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North East Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North East Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northamptonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northamptonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northamptonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northumberland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northumberland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northumberland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Nottingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nottingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nottingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oldham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oldham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oldham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Orkney Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Orkney Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orkney Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oxfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oxfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oxfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Pembrokeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pembrokeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pembrokeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Perth and Kinross\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth and Kinross\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perth and Kinross\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Peterborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Peterborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peterborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Plymouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plymouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plymouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Poole\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Poole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Portsmouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portsmouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portsmouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Powys\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Powys\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Powys\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Reading\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reading\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Reading\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redbridge\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redbridge\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redbridge\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redcar and Cleveland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redcar and Cleveland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhondda Cynon Taff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhondda Cynon Taff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Richmond upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Richmond upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Richmond upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rochdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rochdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rochdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rotherham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rotherham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rotherham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rutland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rutland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rutland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Salford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sandwell\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sandwell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sandwell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Scottish Borders, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Scottish Borders, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Scottish Borders, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sefton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sefton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sefton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sheffield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sheffield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sheffield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shetland Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shetland Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shetland Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shropshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shropshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shropshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Slough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Slough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Solihull\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solihull\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solihull\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southend-on-Sea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southend-on-Sea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southend-on-Sea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southwark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southwark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southwark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"St. Helens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"St. Helens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/St. Helens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stirling\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stirling\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stirling\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockton-on-Tees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockton-on-Tees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockton-on-Tees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stoke-on-Trent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stoke-on-Trent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Suffolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Suffolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suffolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sunderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sunderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sunderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sutton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sutton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sutton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swansea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swansea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swansea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swindon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swindon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swindon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tameside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tameside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tameside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Telford and Wrekin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Telford and Wrekin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telford and Wrekin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Thurrock\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurrock\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurrock\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torbay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torbay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torbay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torfaen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torfaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torfaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tower Hamlets\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tower Hamlets\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tower Hamlets\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Trafford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trafford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trafford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Vale of Glamorgan, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vale of Glamorgan, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vale of Glamorgan, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wakefield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakefield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakefield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Walsall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Walsall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Walsall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Waltham Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waltham Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waltham Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wandsworth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wandsworth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wandsworth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warrington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warrington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warrington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warwickshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warwickshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warwickshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Berkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Berkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Berkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Westminster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Westminster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westminster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wiltshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wiltshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wiltshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Windsor and Maidenhead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Windsor and Maidenhead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wirral\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wirral\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wirral\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wokingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wokingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wokingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wolverhampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wolverhampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wolverhampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Worcestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Worcestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Worcestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wrexham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wrexham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wrexham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Alabama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Alabama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alabama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arizona\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arizona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arizona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arkansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arkansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arkansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"California\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Colorado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Colorado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colorado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Connecticut\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Connecticut\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Connecticut\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delaware\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delaware\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"District of Columbia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"District of Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/District of Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Florida\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Florida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Florida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Georgia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Georgia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Georgia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Hawaii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawaii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawaii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Idaho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Idaho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idaho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Illinois\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Illinois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Illinois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Indiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Indiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Indiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Iowa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iowa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iowa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kentucky\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kentucky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentucky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Louisiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Louisiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louisiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maryland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maryland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maryland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Massachusetts\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Massachusetts\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Massachusetts\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Michigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Michigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Minnesota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minnesota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minnesota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Mississippi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mississippi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mississippi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Missouri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Missouri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Missouri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nebraska\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nebraska\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nebraska\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nevada\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nevada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nevada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Jersey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Jersey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Jersey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Mexico\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Ohio\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ohio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oklahoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oklahoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oklahoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oregon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oregon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oregon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Pennsylvania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pennsylvania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pennsylvania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Rhode Island\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhode Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhode Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Tennessee\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tennessee\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tennessee\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Texas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Texas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Texas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Utah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Vermont\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vermont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vermont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Washington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Washington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Washington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"West Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wisconsin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wisconsin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wisconsin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wyoming\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wyoming\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wyoming\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/CheckServiceProviderAvailability?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9DaGVja1NlcnZpY2VQcm92aWRlckF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/CheckServiceProviderAvailability?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9DaGVja1NlcnZpY2VQcm92aWRlckF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\"\r\n}", + "RequestBody": "{\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8660c872-c1dd-406a-a3f0-f01cc14a01cd" + "94166b6b-6f96-4925-93e1-f83ac3e70045" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "106" + "92" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-request-id": [ - "573a0ecd-c2b9-415d-985a-fe7926fcf7c5" + "839a6a7d-0f69-4989-a06c-798b96f7b9a3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "0beca609-d71e-4060-8a09-88bce3cb9c7b" + "f71a289a-1384-4bee-8443-f1699a8a23fd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213717Z:0beca609-d71e-4060-8a09-88bce3cb9c7b" + "NORTHEUROPE:20210409T080847Z:f71a289a-1384-4bee-8443-f1699a8a23fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:37:17 GMT" + "Fri, 09 Apr 2021 08:08:47 GMT" ], "Content-Length": [ "11" @@ -127,28 +127,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7582?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlNzU4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService2614?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMjYxND9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\"\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\"\r\n },\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31649745-68ed-496a-9216-3982bdea19f6" + "94166b6b-6f96-4925-93e1-f83ac3e70045" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "163" + "149" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "f2bbbd26-6382-4648-b4e3-e335dd122864" + "852c8a5b-ba65-470c-9608-5699280cb68d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "1abd99b8-aa15-4bc8-be4f-06565f8c6981" + "82cc29ae-950d-4e3e-97ab-c51ae8cc8598" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213721Z:1abd99b8-aa15-4bc8-be4f-06565f8c6981" + "NORTHEUROPE:20210409T080851Z:82cc29ae-950d-4e3e-97ab-c51ae8cc8598" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:37:21 GMT" + "Fri, 09 Apr 2021 08:08:50 GMT" ], "Content-Length": [ - "491" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"6d92f336-1091-4ce9-a516-f9ea32afdf2c\",\r\n \"name\": \"myPeeringService7582\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7582\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService2614\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService2614\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7582?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlNzU4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService2614?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMjYxND9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cee10358-8153-4f0f-b440-25914fa749f4" + "94166b6b-6f96-4925-93e1-f83ac3e70045" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "487c78e7-d3d6-4074-8f4a-7e57d999f6d4" + "ea972e56-4e17-4d9d-a961-864b3fe6c6b1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "35f2f640-6bb1-4315-8b83-ff0be308885c" + "c0f8d110-5ab9-420f-8661-135f8e609c97" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213721Z:35f2f640-6bb1-4315-8b83-ff0be308885c" + "NORTHEUROPE:20210409T080851Z:c0f8d110-5ab9-420f-8661-135f8e609c97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:37:21 GMT" + "Fri, 09 Apr 2021 08:08:50 GMT" ], "Content-Length": [ - "491" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,26 +249,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"6d92f336-1091-4ce9-a516-f9ea32afdf2c\",\r\n \"name\": \"myPeeringService7582\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7582\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService2614\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService2614\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7582?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlNzU4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService2614?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMjYxND9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "117bbc93-738a-4300-af2c-95240dff1a8d" + "3dfda865-fdd2-4891-b046-ac912ae24573" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -279,16 +279,16 @@ "no-cache" ], "x-ms-request-id": [ - "4b8af952-958a-4349-b66f-4c47acb18996" + "ff39a2ca-5add-4b44-a69d-0cf02780eb47" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "f68467a4-f7df-449f-86d6-6f9f0e25e89c" + "b389d87a-644f-40ca-b4f0-adbafb299d7d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213721Z:f68467a4-f7df-449f-86d6-6f9f0e25e89c" + "NORTHEUROPE:20210409T080852Z:b389d87a-644f-40ca-b4f0-adbafb299d7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,10 +297,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:37:21 GMT" + "Fri, 09 Apr 2021 08:08:52 GMT" ], "Content-Length": [ - "491" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -309,13 +309,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"6d92f336-1091-4ce9-a516-f9ea32afdf2c\",\r\n \"name\": \"myPeeringService7582\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7582\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService2614\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService2614\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-GetPeeringServiceByResourceGroup": [ - "myPeeringService7582" + "myPeeringService2614" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceByResourceId.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceByResourceId.json index 665fd90da9dc..9035e11213e8 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceByResourceId.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceByResourceId.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cac7299e-e6c1-4a0f-a2ee-548b228a737f" + "4c85a3e0-9765-48ab-9b42-95ced9c48165" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "3b859b4d-ce29-4227-8ff3-77e4884b55fb" + "a5c65697-8b45-4cd2-aa6e-8827f23911bb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "e179086c-7a87-4370-8988-563f265d74de" + "67874725-432e-4595-af15-de20e5bf67b4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213800Z:e179086c-7a87-4370-8988-563f265d74de" + "NORTHEUROPE:20210409T080932Z:67874725-432e-4595-af15-de20e5bf67b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:38:00 GMT" + "Fri, 09 Apr 2021 08:09:31 GMT" ], "Content-Length": [ - "141166" + "191674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,32 +57,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Australian Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Australian Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"New South Wales\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New South Wales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New South Wales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Queensland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Queensland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"South Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tasmania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tasmania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Victoria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Victoria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Victoria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Western Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Auvergne-Rhone-Alpes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auvergne-Rhone-Alpes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auvergne-Rhone-Alpes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bourgogne-Franche-Comte\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bourgogne-Franche-Comte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bourgogne-Franche-Comte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bretagne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bretagne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bretagne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Centre-Val de Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Centre-Val de Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Centre-Val de Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Corsica\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Corsica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Corsica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Grand Est\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Grand Est\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grand Est\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Hauts-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hauts-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hauts-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Ile-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ile-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ile-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Normandie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Normandie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Normandie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Nouvelle-Aquitaine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nouvelle-Aquitaine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nouvelle-Aquitaine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Occitanie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Occitanie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Occitanie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Pays de la Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pays de la Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pays de la Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Provence-Alpes-Cote d’Azur\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Provence-Alpes-Cote d’Azur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Provence-Alpes-Cote d’Azur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Baden-Wurttemberg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baden-Wurttemberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baden-Wurttemberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bavaria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bavaria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bavaria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Brandenburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brandenburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brandenburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bremen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bremen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bremen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hamburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hesse\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hesse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hesse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Lower Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lower Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lower Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Mecklenburg-Western Pomerania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mecklenburg-Western Pomerania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mecklenburg-Western Pomerania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"North Rhine-Westphalia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Rhine-Westphalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Rhine-Westphalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Rhineland-Palatinate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhineland-Palatinate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhineland-Palatinate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saarland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saarland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saarland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony-Anhalt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony-Anhalt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony-Anhalt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schleswig-Holstein\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schleswig-Holstein\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Thuringia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thuringia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thuringia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hong Kong\",\r\n \"state\": \"Hong Kong\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aichi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aichi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aichi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Akita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aomori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aomori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aomori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Chiba\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chiba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ehime\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ehime\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ehime\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gifu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gifu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gifu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gunma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gunma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gunma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hiroshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hiroshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiroshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hyogo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyogo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hyogo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ibaraki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ibaraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ibaraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ishikawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ishikawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ishikawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Iwate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iwate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iwate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagoshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagoshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagoshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kanagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kanagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kochi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kochi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kochi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kumamoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kumamoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumamoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kyoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kyoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Mie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyagi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyagi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyagi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyazaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyazaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyazaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagano\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagano\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagano\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagasaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagasaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagasaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Niigata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niigata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niigata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Oita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okinawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okinawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okinawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Osaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saitama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saitama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saitama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shimane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shimane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shizuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shizuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shizuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tochigi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tochigi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tochigi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tottori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tottori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tottori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Toyama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toyama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Toyama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Wakayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamagata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamagata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamagata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamaguchi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamaguchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamaguchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamanashi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamanashi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamanashi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Johor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Johor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kedah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kedah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kedah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kelantan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kelantan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kelantan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur \",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuala Lumpur \",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Melaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Negeri Sembilan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negeri Sembilan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pahang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pahang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pahang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perlis\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perlis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perlis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pulau Pinang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pulau Pinang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pulau Pinang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Sarawak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sarawak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sarawak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Selangor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selangor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Terengganu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Terengganu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Terengganu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Auckland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Bay of Plenty\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bay of Plenty\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bay of Plenty\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Canterbury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Canterbury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canterbury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Gisborne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gisborne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gisborne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Hawke’s Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawke’s Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawke’s Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manawatu-Wanganui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manawatu-Wanganui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Marlborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marlborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marlborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Nelson\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nelson\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nelson\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Northland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Taranaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taranaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taranaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Waikato\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waikato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waikato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Wellington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wellington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wellington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"West Coast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Coast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Coast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Singapore\",\r\n \"state\": \"Singapore\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eastern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Free State\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Free State\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Free State\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Gauteng\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gauteng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gauteng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"KwaZulu-Natal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"KwaZulu-Natal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/KwaZulu-Natal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Limpopo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limpopo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limpopo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Mpumalanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mpumalanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mpumalanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"North West\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North West\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North West\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Northern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Western Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Aberdeen City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aberdeen City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aberdeen City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Angus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Angus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Angus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Antrim and Newtownabbey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antrim and Newtownabbey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ards and North Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ards and North Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ards and North Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Argyll and Bute\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Argyll and Bute\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Argyll and Bute\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Armagh, Banbridge and Craigavon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Armagh, Banbridge and Craigavon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barking and Dagenham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barking and Dagenham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barking and Dagenham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bath and North East Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bath and North East Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bedford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bedford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bedford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Belfast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Belfast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belfast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bexley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bexley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bexley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Birmingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Birmingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Birmingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackburn with Darwen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackburn with Darwen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blaenau Gwent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blaenau Gwent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bolton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bolton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bournemouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bournemouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bournemouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bracknell Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bracknell Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bracknell Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bradford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bradford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bradford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bridgend\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bridgend\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bridgend\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brighton and Hove\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brighton and Hove\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bristol, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bristol, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bristol, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bromley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bromley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bromley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Buckinghamshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buckinghamshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buckinghamshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Caerphilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Caerphilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caerphilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Calderdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Calderdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calderdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cambridgeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cambridgeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cambridgeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Camden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Camden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cardiff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cardiff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cardiff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Carmarthenshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Carmarthenshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carmarthenshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Causeway Coast and Glens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeway Coast and Glens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Central Bedfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Central Bedfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ceredigion\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ceredigion\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceredigion\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire East\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire East\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire East\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire West and Chester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire West and Chester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire West and Chester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Clackmannanshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Clackmannanshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clackmannanshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Conwy\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Conwy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Conwy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cornwall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cornwall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cornwall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Coventry\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coventry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coventry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Croydon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Croydon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Croydon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cumbria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cumbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cumbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Darlington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Darlington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darlington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Denbighshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denbighshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denbighshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derby\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derby\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derby\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derbyshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derbyshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derbyshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derry and Strabane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derry and Strabane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derry and Strabane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Devon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Devon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Devon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Doncaster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Doncaster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Doncaster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dorset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dorset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dorset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dudley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dudley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dudley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dumfries and Galloway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dumfries and Galloway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dundee City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dundee City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dundee City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Durham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Durham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ealing\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ealing\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ealing\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Riding of Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Riding of Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edinburgh, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edinburgh, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Eilean Siar\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eilean Siar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eilean Siar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Enfield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enfield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enfield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Essex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Essex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Essex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Falkirk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Falkirk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Falkirk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fermanagh and Omagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fermanagh and Omagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fife\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fife\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fife\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Flintshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flintshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flintshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gateshead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gateshead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gateshead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Glasgow City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glasgow City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glasgow City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Greenwich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Greenwich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Greenwich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gwynedd\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gwynedd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gwynedd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hackney\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hackney\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hackney\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Halton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Halton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Halton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hammersmith and Fulham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hammersmith and Fulham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hammersmith and Fulham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Haringey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Haringey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haringey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Harrow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Harrow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harrow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hartlepool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hartlepool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hartlepool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Havering\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Havering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Havering\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Herefordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Herefordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herefordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hertfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hertfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hertfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Highland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Highland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Highland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hillingdon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hillingdon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hillingdon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hounslow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hounslow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hounslow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Inverclyde\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Inverclyde\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inverclyde\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Anglesey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Anglesey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Wight\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Wight\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Wight\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isles of Scilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isles of Scilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isles of Scilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Islington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Islington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kensington and Chelsea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kensington and Chelsea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kensington and Chelsea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Hull, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Hull, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kirklees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirklees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Knowsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Knowsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Knowsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lambeth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lambeth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lambeth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lancashire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lancashire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lancashire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leeds\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leeds\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leeds\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leicester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leicester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leicester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lewisham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lewisham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lewisham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisburn and Castlereagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisburn and Castlereagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Liverpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Liverpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liverpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"London\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/London\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Luton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Manchester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Medway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Medway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merthyr Tydfil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merthyr Tydfil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid Ulster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid Ulster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid Ulster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid and East Antrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid and East Antrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Midlothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midlothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midlothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Milton Keynes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milton Keynes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Milton Keynes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Monmouthshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Monmouthshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monmouthshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Moray\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neath Port Talbot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neath Port Talbot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newcastle upon Tyne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newcastle upon Tyne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newcastle upon Tyne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newry, Mourne and Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newry, Mourne and Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newry, Mourne and Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Norfolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Norfolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norfolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North East Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North East Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North East Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northamptonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northamptonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northamptonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northumberland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northumberland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northumberland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Nottingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nottingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nottingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oldham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oldham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oldham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Orkney Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Orkney Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orkney Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oxfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oxfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oxfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Pembrokeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pembrokeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pembrokeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Perth and Kinross\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth and Kinross\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perth and Kinross\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Peterborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Peterborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peterborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Plymouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plymouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plymouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Poole\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Poole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Portsmouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portsmouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portsmouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Powys\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Powys\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Powys\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Reading\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reading\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Reading\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redbridge\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redbridge\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redbridge\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redcar and Cleveland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redcar and Cleveland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhondda Cynon Taff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhondda Cynon Taff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Richmond upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Richmond upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Richmond upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rochdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rochdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rochdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rotherham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rotherham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rotherham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rutland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rutland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rutland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Salford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sandwell\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sandwell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sandwell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Scottish Borders, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Scottish Borders, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Scottish Borders, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sefton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sefton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sefton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sheffield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sheffield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sheffield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shetland Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shetland Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shetland Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shropshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shropshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shropshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Slough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Slough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Solihull\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solihull\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solihull\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southend-on-Sea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southend-on-Sea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southend-on-Sea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southwark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southwark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southwark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"St. Helens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"St. Helens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/St. Helens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stirling\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stirling\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stirling\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockton-on-Tees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockton-on-Tees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockton-on-Tees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stoke-on-Trent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stoke-on-Trent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Suffolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Suffolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suffolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sunderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sunderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sunderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sutton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sutton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sutton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swansea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swansea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swansea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swindon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swindon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swindon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tameside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tameside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tameside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Telford and Wrekin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Telford and Wrekin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telford and Wrekin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Thurrock\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurrock\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurrock\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torbay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torbay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torbay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torfaen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torfaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torfaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tower Hamlets\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tower Hamlets\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tower Hamlets\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Trafford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trafford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trafford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Vale of Glamorgan, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vale of Glamorgan, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vale of Glamorgan, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wakefield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakefield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakefield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Walsall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Walsall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Walsall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Waltham Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waltham Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waltham Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wandsworth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wandsworth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wandsworth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warrington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warrington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warrington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warwickshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warwickshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warwickshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Berkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Berkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Berkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Westminster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Westminster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westminster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wiltshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wiltshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wiltshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Windsor and Maidenhead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Windsor and Maidenhead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wirral\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wirral\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wirral\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wokingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wokingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wokingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wolverhampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wolverhampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wolverhampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Worcestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Worcestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Worcestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wrexham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wrexham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wrexham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Alabama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Alabama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alabama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arizona\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arizona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arizona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arkansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arkansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arkansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"California\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Colorado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Colorado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colorado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Connecticut\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Connecticut\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Connecticut\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delaware\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delaware\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"District of Columbia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"District of Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/District of Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Florida\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Florida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Florida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Georgia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Georgia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Georgia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Hawaii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawaii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawaii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Idaho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Idaho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idaho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Illinois\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Illinois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Illinois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Indiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Indiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Indiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Iowa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iowa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iowa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kentucky\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kentucky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentucky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Louisiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Louisiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louisiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maryland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maryland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maryland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Massachusetts\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Massachusetts\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Massachusetts\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Michigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Michigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Minnesota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minnesota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minnesota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Mississippi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mississippi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mississippi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Missouri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Missouri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Missouri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nebraska\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nebraska\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nebraska\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nevada\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nevada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nevada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Jersey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Jersey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Jersey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Mexico\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Ohio\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ohio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oklahoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oklahoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oklahoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oregon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oregon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oregon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Pennsylvania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pennsylvania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pennsylvania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Rhode Island\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhode Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhode Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Tennessee\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tennessee\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tennessee\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Texas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Texas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Texas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Utah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Vermont\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vermont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vermont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Washington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Washington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Washington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"West Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wisconsin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wisconsin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wisconsin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wyoming\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wyoming\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wyoming\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Australian Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Australian Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"New South Wales\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New South Wales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New South Wales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Queensland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Queensland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"South Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tasmania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tasmania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Victoria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Victoria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Victoria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Western Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Brussels-Capital Region\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels-Capital Region\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brussels-Capital Region\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Flanders\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flanders\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flanders\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Wallonia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wallonia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wallonia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Hovedstaden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hovedstaden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hovedstaden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Midtjylland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midtjylland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midtjylland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Nordjylland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nordjylland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nordjylland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Sjaelland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sjaelland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sjaelland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Syddanmark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Syddanmark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Syddanmark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Auvergne-Rhone-Alpes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auvergne-Rhone-Alpes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auvergne-Rhone-Alpes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bourgogne-Franche-Comte\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bourgogne-Franche-Comte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bourgogne-Franche-Comte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bretagne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bretagne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bretagne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Centre-Val de Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Centre-Val de Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Centre-Val de Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Corsica\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Corsica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Corsica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Grand Est\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Grand Est\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grand Est\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Hauts-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hauts-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hauts-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Ile-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ile-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ile-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Normandie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Normandie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Normandie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Nouvelle-Aquitaine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nouvelle-Aquitaine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nouvelle-Aquitaine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Occitanie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Occitanie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Occitanie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Pays de la Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pays de la Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pays de la Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Provence-Alpes-Cote d’Azur\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Provence-Alpes-Cote d’Azur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Provence-Alpes-Cote d’Azur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Baden-Wurttemberg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baden-Wurttemberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baden-Wurttemberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bavaria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bavaria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bavaria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Brandenburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brandenburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brandenburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bremen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bremen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bremen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hamburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hesse\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hesse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hesse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Lower Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lower Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lower Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Mecklenburg-Western Pomerania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mecklenburg-Western Pomerania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mecklenburg-Western Pomerania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"North Rhine-Westphalia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Rhine-Westphalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Rhine-Westphalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Rhineland-Palatinate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhineland-Palatinate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhineland-Palatinate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saarland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saarland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saarland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony-Anhalt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony-Anhalt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony-Anhalt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schleswig-Holstein\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schleswig-Holstein\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Thuringia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thuringia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thuringia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hong Kong\",\r\n \"state\": \"Hong Kong\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aichi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aichi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aichi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Akita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aomori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aomori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aomori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Chiba\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chiba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ehime\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ehime\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ehime\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gifu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gifu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gifu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gunma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gunma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gunma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hiroshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hiroshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiroshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hyogo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyogo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hyogo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ibaraki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ibaraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ibaraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ishikawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ishikawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ishikawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Iwate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iwate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iwate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagoshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagoshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagoshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kanagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kanagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kochi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kochi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kochi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kumamoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kumamoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumamoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kyoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kyoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Mie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyagi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyagi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyagi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyazaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyazaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyazaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagano\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagano\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagano\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagasaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagasaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagasaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Niigata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niigata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niigata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Oita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okinawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okinawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okinawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Osaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saitama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saitama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saitama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shimane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shimane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shizuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shizuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shizuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tochigi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tochigi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tochigi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tottori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tottori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tottori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Toyama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toyama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Toyama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Wakayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamagata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamagata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamagata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamaguchi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamaguchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamaguchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamanashi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamanashi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamanashi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Baringo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baringo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baringo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Bomet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bomet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bomet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Bungoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bungoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bungoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Busia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Busia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Busia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Elgeyo/Marakwet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Elgeyo/Marakwet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Elgeyo/Marakwet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Embu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Embu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Embu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Garissa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Garissa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Garissa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Homa Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Homa Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Homa Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Isiolo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isiolo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isiolo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kajiado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kajiado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kajiado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kakamega\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kakamega\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kakamega\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kericho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kericho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kericho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kiambu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiambu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kiambu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kilifi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kilifi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kilifi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kirinyaga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirinyaga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirinyaga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kisii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kisii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kisii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kisumu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kisumu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kisumu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kitui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kitui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kitui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kwale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kwale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kwale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Laikipia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Laikipia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Laikipia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Lamu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lamu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lamu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Machakos\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Machakos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Machakos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Makueni\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Makueni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Makueni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Marsabit\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marsabit\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marsabit\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Meru\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Meru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Meru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Migori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Migori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Migori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Mombasa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mombasa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mombasa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Murang’a\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Murang’a\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Murang’a\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nairobi City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nairobi City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nakuru\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nakuru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakuru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Namanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Namanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Namanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nandi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nandi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nandi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Narok\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Narok\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Narok\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyamira\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyamira\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyamira\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyandarua\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyandarua\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyandarua\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyeri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyeri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyeri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Samburu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Samburu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Samburu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Siaya\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Siaya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Siaya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Taita/Taveta\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taita/Taveta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taita/Taveta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Tana River\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tana River\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tana River\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Tharaka-Nithi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tharaka-Nithi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tharaka-Nithi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Trans Nzoia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trans Nzoia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trans Nzoia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Turkana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Turkana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Turkana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Uasin Gishu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Uasin Gishu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uasin Gishu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Vihiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vihiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vihiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Wajir\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wajir\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wajir\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"West Pokot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Pokot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Pokot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Johor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Johor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kedah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kedah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kedah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kelantan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kelantan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kelantan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur \",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuala Lumpur \",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Melaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Negeri Sembilan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negeri Sembilan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pahang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pahang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pahang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perlis\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perlis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perlis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pulau Pinang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pulau Pinang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pulau Pinang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Sarawak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sarawak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sarawak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Selangor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selangor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Terengganu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Terengganu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Terengganu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Drenthe\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Drenthe\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Drenthe\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Flevoland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flevoland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flevoland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Fryslan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fryslan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fryslan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Gelderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gelderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gelderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Groningen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Groningen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Groningen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Limburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Noord-Brabant\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Noord-Brabant\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Noord-Brabant\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Noord-Holland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Noord-Holland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Noord-Holland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Overijssel\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Overijssel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Overijssel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Utrecht\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utrecht\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utrecht\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Zeeland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zeeland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zeeland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Zuid-Holland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zuid-Holland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zuid-Holland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Auckland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Bay of Plenty\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bay of Plenty\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bay of Plenty\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Canterbury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Canterbury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canterbury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Gisborne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gisborne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gisborne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Hawke’s Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawke’s Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawke’s Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manawatu-Wanganui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manawatu-Wanganui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Marlborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marlborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marlborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Nelson\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nelson\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nelson\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Northland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Taranaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taranaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taranaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Waikato\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waikato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waikato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Wellington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wellington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wellington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"West Coast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Coast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Coast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Abia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Abia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Abia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Akwa Ibom\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akwa Ibom\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akwa Ibom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Anambra\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Anambra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Anambra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Bayelsa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bayelsa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bayelsa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Benue\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Benue\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Benue\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Cross River\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cross River\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cross River\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Delta\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ebonyi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ebonyi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ebonyi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Edo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ekiti\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ekiti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ekiti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Enugu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enugu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enugu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Federal Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Federal Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Federal Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Imo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Imo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Imo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kaduna\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kaduna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kaduna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kebbi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kebbi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kebbi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kogi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kogi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kogi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kwara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kwara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kwara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Lagos\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Nasarawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nasarawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nasarawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Niger\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niger\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niger\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ogun\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ogun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ogun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ondo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ondo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ondo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Osun\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Oyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Plateau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plateau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plateau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Rivers\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rivers\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rivers\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Sokoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sokoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sokoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Zamfara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zamfara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zamfara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Aveiro\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aveiro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aveiro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Beja\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Beja\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Beja\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Braga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Braga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Braganca\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Braganca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braganca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Castelo Branco\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Castelo Branco\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Castelo Branco\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Coimbra\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coimbra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coimbra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Evora\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Evora\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Evora\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Faro\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Faro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Faro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Guarda\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Guarda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guarda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Leiria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leiria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leiria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Lisboa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisboa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisboa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Portalegre\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portalegre\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portalegre\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Porto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Porto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Porto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Santarem\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santarem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Santarem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Setubal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Setubal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Setubal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Viana do Castelo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Viana do Castelo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viana do Castelo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Vila Real\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vila Real\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vila Real\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Viseu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Viseu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viseu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Singapore\",\r\n \"state\": \"Singapore\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eastern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Free State\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Free State\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Free State\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Gauteng\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gauteng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gauteng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"KwaZulu-Natal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"KwaZulu-Natal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/KwaZulu-Natal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Limpopo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limpopo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limpopo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Mpumalanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mpumalanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mpumalanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"North West\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North West\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North West\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Northern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Western Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Aargau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aargau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aargau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Appenzell Ausserrhoden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Appenzell Ausserrhoden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Appenzell Ausserrhoden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Appenzell Innerrhoden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Appenzell Innerrhoden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Appenzell Innerrhoden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Basel-Landschaft\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Basel-Landschaft\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basel-Landschaft\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Basel-Stadt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Basel-Stadt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basel-Stadt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Bern\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Fribourg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fribourg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fribourg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Geneve\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneve\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Geneve\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Glarus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glarus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glarus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Graubunden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Graubunden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Graubunden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Jura\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jura\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jura\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Luzern\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luzern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luzern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Neuchatel\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neuchatel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neuchatel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Nidwalden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nidwalden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nidwalden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Obwalden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Obwalden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Obwalden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Sankt Gallen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sankt Gallen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sankt Gallen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Schaffhausen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schaffhausen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schaffhausen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Schwyz\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schwyz\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schwyz\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Solothurn\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solothurn\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solothurn\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Thurgau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurgau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurgau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Ticino\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ticino\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ticino\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Uri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Uri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Valais\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Valais\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valais\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Vaud\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vaud\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vaud\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Zug\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zug\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zug\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Zurich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Aberdeen City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aberdeen City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aberdeen City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Angus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Angus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Angus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Antrim and Newtownabbey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antrim and Newtownabbey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ards and North Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ards and North Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ards and North Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Argyll and Bute\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Argyll and Bute\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Argyll and Bute\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Armagh, Banbridge and Craigavon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Armagh, Banbridge and Craigavon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barking and Dagenham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barking and Dagenham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barking and Dagenham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bath and North East Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bath and North East Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bedford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bedford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bedford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Belfast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Belfast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belfast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bexley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bexley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bexley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Birmingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Birmingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Birmingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackburn with Darwen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackburn with Darwen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blaenau Gwent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blaenau Gwent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bolton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bolton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bournemouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bournemouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bournemouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bracknell Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bracknell Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bracknell Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bradford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bradford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bradford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bridgend\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bridgend\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bridgend\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brighton and Hove\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brighton and Hove\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bristol, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bristol, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bristol, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bromley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bromley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bromley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Buckinghamshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buckinghamshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buckinghamshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Caerphilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Caerphilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caerphilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Calderdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Calderdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calderdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cambridgeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cambridgeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cambridgeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Camden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Camden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cardiff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cardiff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cardiff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Carmarthenshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Carmarthenshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carmarthenshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Causeway Coast and Glens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeway Coast and Glens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Central Bedfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Central Bedfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ceredigion\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ceredigion\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceredigion\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire East\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire East\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire East\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire West and Chester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire West and Chester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire West and Chester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Clackmannanshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Clackmannanshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clackmannanshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Conwy\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Conwy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Conwy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cornwall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cornwall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cornwall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Coventry\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coventry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coventry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Croydon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Croydon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Croydon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cumbria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cumbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cumbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Darlington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Darlington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darlington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Denbighshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denbighshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denbighshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derby\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derby\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derby\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derbyshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derbyshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derbyshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derry and Strabane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derry and Strabane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derry and Strabane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Devon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Devon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Devon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Doncaster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Doncaster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Doncaster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dorset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dorset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dorset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dudley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dudley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dudley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dumfries and Galloway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dumfries and Galloway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dundee City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dundee City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dundee City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Durham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Durham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ealing\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ealing\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ealing\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Riding of Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Riding of Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edinburgh, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edinburgh, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Eilean Siar\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eilean Siar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eilean Siar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Enfield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enfield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enfield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Essex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Essex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Essex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Falkirk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Falkirk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Falkirk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fermanagh and Omagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fermanagh and Omagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fife\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fife\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fife\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Flintshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flintshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flintshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gateshead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gateshead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gateshead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Glasgow City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glasgow City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glasgow City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Greenwich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Greenwich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Greenwich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gwynedd\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gwynedd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gwynedd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hackney\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hackney\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hackney\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Halton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Halton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Halton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hammersmith and Fulham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hammersmith and Fulham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hammersmith and Fulham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Haringey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Haringey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haringey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Harrow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Harrow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harrow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hartlepool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hartlepool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hartlepool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Havering\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Havering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Havering\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Herefordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Herefordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herefordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hertfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hertfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hertfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Highland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Highland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Highland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hillingdon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hillingdon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hillingdon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hounslow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hounslow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hounslow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Inverclyde\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Inverclyde\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inverclyde\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Anglesey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Anglesey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Wight\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Wight\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Wight\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isles of Scilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isles of Scilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isles of Scilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Islington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Islington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kensington and Chelsea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kensington and Chelsea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kensington and Chelsea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Hull, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Hull, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kirklees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirklees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Knowsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Knowsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Knowsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lambeth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lambeth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lambeth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lancashire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lancashire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lancashire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leeds\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leeds\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leeds\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leicester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leicester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leicester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lewisham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lewisham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lewisham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisburn and Castlereagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisburn and Castlereagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Liverpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Liverpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liverpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"London\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/London\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Luton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Manchester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Medway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Medway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merthyr Tydfil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merthyr Tydfil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid Ulster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid Ulster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid Ulster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid and East Antrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid and East Antrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Midlothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midlothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midlothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Milton Keynes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milton Keynes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Milton Keynes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Monmouthshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Monmouthshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monmouthshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Moray\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neath Port Talbot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neath Port Talbot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newcastle upon Tyne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newcastle upon Tyne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newcastle upon Tyne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newry, Mourne and Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newry, Mourne and Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newry, Mourne and Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Norfolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Norfolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norfolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North East Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North East Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North East Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northamptonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northamptonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northamptonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northumberland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northumberland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northumberland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Nottingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nottingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nottingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oldham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oldham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oldham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Orkney Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Orkney Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orkney Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oxfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oxfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oxfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Pembrokeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pembrokeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pembrokeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Perth and Kinross\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth and Kinross\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perth and Kinross\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Peterborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Peterborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peterborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Plymouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plymouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plymouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Poole\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Poole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Portsmouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portsmouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portsmouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Powys\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Powys\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Powys\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Reading\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reading\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Reading\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redbridge\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redbridge\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redbridge\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redcar and Cleveland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redcar and Cleveland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhondda Cynon Taff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhondda Cynon Taff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Richmond upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Richmond upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Richmond upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rochdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rochdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rochdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rotherham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rotherham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rotherham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rutland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rutland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rutland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Salford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sandwell\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sandwell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sandwell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Scottish Borders, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Scottish Borders, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Scottish Borders, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sefton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sefton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sefton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sheffield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sheffield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sheffield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shetland Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shetland Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shetland Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shropshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shropshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shropshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Slough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Slough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Solihull\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solihull\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solihull\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southend-on-Sea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southend-on-Sea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southend-on-Sea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southwark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southwark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southwark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"St. Helens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"St. Helens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/St. Helens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stirling\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stirling\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stirling\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockton-on-Tees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockton-on-Tees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockton-on-Tees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stoke-on-Trent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stoke-on-Trent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Suffolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Suffolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suffolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sunderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sunderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sunderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sutton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sutton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sutton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swansea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swansea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swansea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swindon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swindon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swindon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tameside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tameside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tameside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Telford and Wrekin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Telford and Wrekin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telford and Wrekin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Thurrock\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurrock\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurrock\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torbay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torbay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torbay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torfaen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torfaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torfaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tower Hamlets\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tower Hamlets\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tower Hamlets\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Trafford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trafford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trafford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Vale of Glamorgan, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vale of Glamorgan, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vale of Glamorgan, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wakefield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakefield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakefield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Walsall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Walsall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Walsall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Waltham Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waltham Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waltham Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wandsworth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wandsworth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wandsworth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warrington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warrington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warrington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warwickshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warwickshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warwickshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Berkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Berkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Berkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Westminster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Westminster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westminster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wiltshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wiltshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wiltshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Windsor and Maidenhead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Windsor and Maidenhead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wirral\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wirral\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wirral\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wokingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wokingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wokingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wolverhampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wolverhampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wolverhampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Worcestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Worcestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Worcestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wrexham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wrexham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wrexham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Alabama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Alabama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alabama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arizona\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arizona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arizona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arkansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arkansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arkansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"California\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Colorado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Colorado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colorado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Connecticut\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Connecticut\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Connecticut\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delaware\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delaware\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"District of Columbia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"District of Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/District of Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Florida\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Florida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Florida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Georgia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Georgia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Georgia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Hawaii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawaii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawaii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Idaho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Idaho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idaho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Illinois\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Illinois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Illinois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Indiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Indiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Indiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Iowa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iowa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iowa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kentucky\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kentucky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentucky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Louisiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Louisiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louisiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maryland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maryland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maryland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Massachusetts\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Massachusetts\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Massachusetts\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Michigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Michigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Minnesota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minnesota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minnesota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Mississippi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mississippi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mississippi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Missouri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Missouri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Missouri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nebraska\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nebraska\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nebraska\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nevada\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nevada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nevada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Jersey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Jersey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Jersey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Mexico\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Ohio\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ohio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oklahoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oklahoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oklahoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oregon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oregon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oregon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Pennsylvania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pennsylvania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pennsylvania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Rhode Island\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhode Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhode Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Tennessee\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tennessee\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tennessee\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Texas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Texas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Texas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Utah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Vermont\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vermont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vermont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Washington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Washington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Washington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"West Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wisconsin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wisconsin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wisconsin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wyoming\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wyoming\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wyoming\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/CheckServiceProviderAvailability?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9DaGVja1NlcnZpY2VQcm92aWRlckF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/CheckServiceProviderAvailability?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9DaGVja1NlcnZpY2VQcm92aWRlckF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\"\r\n}", + "RequestBody": "{\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b66dbf53-19b3-463b-8afe-86799c1da7e4" + "4c85a3e0-9765-48ab-9b42-95ced9c48165" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "106" + "92" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-request-id": [ - "2780e493-8a2b-4ff2-9109-ed41565c9cb7" + "219ea8a3-58a4-4a4b-b71a-37671ea75046" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "1fadd53a-507f-4290-a773-b1f09429f4d7" + "7f83b70f-3af3-4f23-b3f2-324dc3f70c0a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213801Z:1fadd53a-507f-4290-a773-b1f09429f4d7" + "NORTHEUROPE:20210409T080933Z:7f83b70f-3af3-4f23-b3f2-324dc3f70c0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:38:01 GMT" + "Fri, 09 Apr 2021 08:09:33 GMT" ], "Content-Length": [ "11" @@ -127,28 +127,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4995?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlNDk5NT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3280?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMzI4MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\"\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\"\r\n },\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6066815f-6c54-42f4-b000-fbb95dcc1f90" + "4c85a3e0-9765-48ab-9b42-95ced9c48165" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "163" + "149" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "b27dbd66-a776-494b-b139-67d9e2b412d0" + "e41e7d85-85b8-411d-a91a-ef488dcf867d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "bc07847d-0645-40f7-82b7-30c7a263d0ba" + "2d88dd02-238d-49f2-aec7-e436ccdd7525" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213807Z:bc07847d-0645-40f7-82b7-30c7a263d0ba" + "NORTHEUROPE:20210409T080937Z:2d88dd02-238d-49f2-aec7-e436ccdd7525" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:38:07 GMT" + "Fri, 09 Apr 2021 08:09:37 GMT" ], "Content-Length": [ - "491" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"e6850bb8-1431-4ce3-bf1a-663809c49297\",\r\n \"name\": \"myPeeringService4995\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4995\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService3280\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3280\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4995?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlNDk5NT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3280?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMzI4MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4654e882-963e-447e-92d6-931826863585" + "4c85a3e0-9765-48ab-9b42-95ced9c48165" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "217ca810-2f16-41da-919a-8614592b599c" + "52f77ee4-a9d8-4cf3-b4f2-98a3eeffd369" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "b12682d7-ad0f-418f-ad7c-d66d8aba9c24" + "7899a0ef-40c9-44a9-9cb7-6ba7e0506f32" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213808Z:b12682d7-ad0f-418f-ad7c-d66d8aba9c24" + "NORTHEUROPE:20210409T080937Z:7899a0ef-40c9-44a9-9cb7-6ba7e0506f32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:38:07 GMT" + "Fri, 09 Apr 2021 08:09:37 GMT" ], "Content-Length": [ - "491" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,26 +249,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"e6850bb8-1431-4ce3-bf1a-663809c49297\",\r\n \"name\": \"myPeeringService4995\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4995\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService3280\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3280\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4995?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlNDk5NT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3280?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMzI4MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "124b38e8-fdd6-42ae-99d7-5dad6c063a05" + "8f7181e8-bce9-4f76-a499-ca0d50efaa1d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -279,16 +279,16 @@ "no-cache" ], "x-ms-request-id": [ - "28073a7e-d09e-411e-9eb3-79c5282e358b" + "1a739fe9-3262-46b3-a98b-d763a5678da3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "b056ec97-2f50-498c-b72c-e3e4051543d8" + "6d3dcc71-fc9a-4204-81bb-73f32cd24d7a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213808Z:b056ec97-2f50-498c-b72c-e3e4051543d8" + "NORTHEUROPE:20210409T080937Z:6d3dcc71-fc9a-4204-81bb-73f32cd24d7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,10 +297,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:38:07 GMT" + "Fri, 09 Apr 2021 08:09:37 GMT" ], "Content-Length": [ - "491" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -309,13 +309,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"e6850bb8-1431-4ce3-bf1a-663809c49297\",\r\n \"name\": \"myPeeringService4995\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4995\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService3280\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3280\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-GetPeeringServiceByResourceId": [ - "myPeeringService4995" + "myPeeringService3280" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceLocations.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceLocations.json index ef69e57f01ee..d367f90003db 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceLocations.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceLocations.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUNvdW50cmllcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUNvdW50cmllcz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9b99d81-a4f3-43a7-b6b0-52334736e12a" + "27bc2158-19eb-4020-98ca-0bd503963a1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "3340cd12-c441-4f13-9036-dd46cdd342f6" + "a3ad8865-74db-4228-9077-d6071312cf4a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "440bcc7b-c8c8-4a23-a47c-d0ad1309c80d" + "498384a1-b0c7-48c8-a112-99c880a17ee2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213553Z:440bcc7b-c8c8-4a23-a47c-d0ad1309c80d" + "NORTHEUROPE:20210409T080720Z:498384a1-b0c7-48c8-a112-99c880a17ee2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:35:52 GMT" + "Fri, 09 Apr 2021 08:07:20 GMT" ], "Content-Length": [ - "2582" + "4192" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Germany\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Germany\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Japan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Japan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Malaysia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Malaysia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"New Zealand\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/New Zealand\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"South Africa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/South Africa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"United Kingdom\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/United Kingdom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"United States\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/United States\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Belgium\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Belgium\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Denmark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Denmark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Germany\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Germany\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Japan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Japan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Kenya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Kenya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Malaysia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Malaysia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Netherlands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Netherlands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"New Zealand\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/New Zealand\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Nigeria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Nigeria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Portugal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Portugal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"South Africa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/South Africa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"Switzerland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/Switzerland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"United Kingdom\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/United Kingdom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n },\r\n {\r\n \"name\": \"United States\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceCountries/United States\",\r\n \"type\": \"Microsoft.Peering/peeringServiceCountries\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a8d7f32-53d5-4f16-8c57-ab22df3cdef8" + "397d5f76-1b6c-43bd-b175-e07a6536728f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -87,16 +87,16 @@ "no-cache" ], "x-ms-request-id": [ - "f09906e8-367d-48ae-96c5-af67869508f5" + "db331da3-1fea-4962-97de-ce84d4b46912" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "2284c511-3875-49a7-8010-e2bc5cd9dde0" + "7eaf8416-5529-49e9-b23b-6f3a580c060e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213554Z:2284c511-3875-49a7-8010-e2bc5cd9dde0" + "NORTHEUROPE:20210409T080720Z:7eaf8416-5529-49e9-b23b-6f3a580c060e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,10 +105,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:35:53 GMT" + "Fri, 09 Apr 2021 08:07:20 GMT" ], "Content-Length": [ - "141166" + "191674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,7 +117,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Australian Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Australian Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"New South Wales\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New South Wales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New South Wales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Queensland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Queensland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"South Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tasmania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tasmania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Victoria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Victoria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Victoria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Western Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Auvergne-Rhone-Alpes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auvergne-Rhone-Alpes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auvergne-Rhone-Alpes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bourgogne-Franche-Comte\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bourgogne-Franche-Comte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bourgogne-Franche-Comte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bretagne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bretagne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bretagne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Centre-Val de Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Centre-Val de Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Centre-Val de Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Corsica\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Corsica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Corsica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Grand Est\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Grand Est\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grand Est\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Hauts-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hauts-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hauts-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Ile-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ile-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ile-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Normandie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Normandie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Normandie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Nouvelle-Aquitaine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nouvelle-Aquitaine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nouvelle-Aquitaine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Occitanie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Occitanie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Occitanie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Pays de la Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pays de la Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pays de la Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Provence-Alpes-Cote d’Azur\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Provence-Alpes-Cote d’Azur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Provence-Alpes-Cote d’Azur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Baden-Wurttemberg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baden-Wurttemberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baden-Wurttemberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bavaria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bavaria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bavaria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Brandenburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brandenburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brandenburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bremen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bremen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bremen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hamburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hesse\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hesse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hesse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Lower Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lower Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lower Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Mecklenburg-Western Pomerania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mecklenburg-Western Pomerania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mecklenburg-Western Pomerania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"North Rhine-Westphalia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Rhine-Westphalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Rhine-Westphalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Rhineland-Palatinate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhineland-Palatinate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhineland-Palatinate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saarland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saarland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saarland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony-Anhalt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony-Anhalt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony-Anhalt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schleswig-Holstein\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schleswig-Holstein\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Thuringia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thuringia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thuringia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hong Kong\",\r\n \"state\": \"Hong Kong\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aichi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aichi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aichi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Akita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aomori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aomori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aomori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Chiba\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chiba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ehime\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ehime\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ehime\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gifu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gifu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gifu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gunma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gunma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gunma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hiroshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hiroshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiroshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hyogo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyogo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hyogo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ibaraki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ibaraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ibaraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ishikawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ishikawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ishikawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Iwate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iwate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iwate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagoshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagoshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagoshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kanagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kanagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kochi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kochi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kochi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kumamoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kumamoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumamoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kyoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kyoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Mie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyagi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyagi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyagi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyazaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyazaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyazaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagano\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagano\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagano\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagasaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagasaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagasaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Niigata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niigata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niigata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Oita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okinawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okinawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okinawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Osaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saitama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saitama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saitama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shimane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shimane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shizuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shizuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shizuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tochigi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tochigi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tochigi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tottori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tottori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tottori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Toyama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toyama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Toyama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Wakayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamagata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamagata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamagata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamaguchi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamaguchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamaguchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamanashi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamanashi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamanashi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Johor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Johor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kedah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kedah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kedah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kelantan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kelantan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kelantan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur \",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuala Lumpur \",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Melaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Negeri Sembilan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negeri Sembilan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pahang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pahang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pahang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perlis\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perlis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perlis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pulau Pinang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pulau Pinang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pulau Pinang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Sarawak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sarawak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sarawak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Selangor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selangor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Terengganu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Terengganu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Terengganu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Auckland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Bay of Plenty\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bay of Plenty\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bay of Plenty\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Canterbury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Canterbury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canterbury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Gisborne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gisborne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gisborne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Hawke’s Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawke’s Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawke’s Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manawatu-Wanganui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manawatu-Wanganui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Marlborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marlborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marlborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Nelson\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nelson\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nelson\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Northland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Taranaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taranaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taranaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Waikato\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waikato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waikato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Wellington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wellington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wellington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"West Coast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Coast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Coast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Singapore\",\r\n \"state\": \"Singapore\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eastern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Free State\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Free State\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Free State\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Gauteng\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gauteng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gauteng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"KwaZulu-Natal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"KwaZulu-Natal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/KwaZulu-Natal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Limpopo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limpopo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limpopo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Mpumalanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mpumalanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mpumalanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"North West\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North West\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North West\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Northern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Western Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Aberdeen City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aberdeen City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aberdeen City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Angus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Angus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Angus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Antrim and Newtownabbey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antrim and Newtownabbey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ards and North Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ards and North Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ards and North Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Argyll and Bute\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Argyll and Bute\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Argyll and Bute\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Armagh, Banbridge and Craigavon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Armagh, Banbridge and Craigavon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barking and Dagenham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barking and Dagenham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barking and Dagenham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bath and North East Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bath and North East Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bedford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bedford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bedford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Belfast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Belfast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belfast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bexley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bexley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bexley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Birmingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Birmingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Birmingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackburn with Darwen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackburn with Darwen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blaenau Gwent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blaenau Gwent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bolton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bolton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bournemouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bournemouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bournemouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bracknell Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bracknell Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bracknell Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bradford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bradford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bradford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bridgend\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bridgend\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bridgend\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brighton and Hove\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brighton and Hove\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bristol, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bristol, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bristol, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bromley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bromley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bromley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Buckinghamshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buckinghamshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buckinghamshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Caerphilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Caerphilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caerphilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Calderdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Calderdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calderdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cambridgeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cambridgeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cambridgeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Camden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Camden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cardiff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cardiff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cardiff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Carmarthenshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Carmarthenshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carmarthenshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Causeway Coast and Glens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeway Coast and Glens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Central Bedfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Central Bedfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ceredigion\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ceredigion\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceredigion\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire East\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire East\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire East\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire West and Chester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire West and Chester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire West and Chester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Clackmannanshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Clackmannanshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clackmannanshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Conwy\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Conwy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Conwy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cornwall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cornwall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cornwall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Coventry\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coventry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coventry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Croydon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Croydon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Croydon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cumbria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cumbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cumbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Darlington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Darlington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darlington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Denbighshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denbighshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denbighshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derby\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derby\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derby\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derbyshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derbyshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derbyshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derry and Strabane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derry and Strabane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derry and Strabane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Devon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Devon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Devon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Doncaster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Doncaster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Doncaster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dorset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dorset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dorset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dudley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dudley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dudley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dumfries and Galloway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dumfries and Galloway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dundee City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dundee City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dundee City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Durham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Durham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ealing\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ealing\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ealing\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Riding of Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Riding of Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edinburgh, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edinburgh, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Eilean Siar\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eilean Siar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eilean Siar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Enfield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enfield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enfield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Essex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Essex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Essex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Falkirk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Falkirk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Falkirk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fermanagh and Omagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fermanagh and Omagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fife\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fife\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fife\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Flintshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flintshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flintshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gateshead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gateshead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gateshead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Glasgow City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glasgow City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glasgow City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Greenwich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Greenwich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Greenwich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gwynedd\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gwynedd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gwynedd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hackney\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hackney\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hackney\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Halton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Halton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Halton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hammersmith and Fulham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hammersmith and Fulham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hammersmith and Fulham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Haringey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Haringey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haringey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Harrow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Harrow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harrow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hartlepool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hartlepool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hartlepool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Havering\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Havering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Havering\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Herefordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Herefordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herefordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hertfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hertfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hertfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Highland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Highland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Highland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hillingdon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hillingdon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hillingdon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hounslow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hounslow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hounslow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Inverclyde\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Inverclyde\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inverclyde\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Anglesey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Anglesey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Wight\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Wight\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Wight\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isles of Scilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isles of Scilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isles of Scilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Islington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Islington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kensington and Chelsea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kensington and Chelsea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kensington and Chelsea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Hull, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Hull, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kirklees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirklees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Knowsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Knowsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Knowsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lambeth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lambeth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lambeth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lancashire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lancashire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lancashire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leeds\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leeds\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leeds\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leicester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leicester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leicester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lewisham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lewisham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lewisham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisburn and Castlereagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisburn and Castlereagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Liverpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Liverpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liverpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"London\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/London\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Luton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Manchester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Medway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Medway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merthyr Tydfil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merthyr Tydfil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid Ulster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid Ulster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid Ulster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid and East Antrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid and East Antrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Midlothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midlothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midlothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Milton Keynes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milton Keynes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Milton Keynes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Monmouthshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Monmouthshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monmouthshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Moray\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neath Port Talbot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neath Port Talbot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newcastle upon Tyne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newcastle upon Tyne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newcastle upon Tyne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newry, Mourne and Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newry, Mourne and Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newry, Mourne and Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Norfolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Norfolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norfolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North East Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North East Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North East Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northamptonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northamptonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northamptonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northumberland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northumberland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northumberland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Nottingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nottingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nottingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oldham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oldham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oldham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Orkney Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Orkney Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orkney Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oxfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oxfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oxfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Pembrokeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pembrokeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pembrokeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Perth and Kinross\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth and Kinross\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perth and Kinross\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Peterborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Peterborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peterborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Plymouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plymouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plymouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Poole\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Poole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Portsmouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portsmouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portsmouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Powys\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Powys\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Powys\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Reading\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reading\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Reading\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redbridge\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redbridge\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redbridge\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redcar and Cleveland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redcar and Cleveland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhondda Cynon Taff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhondda Cynon Taff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Richmond upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Richmond upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Richmond upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rochdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rochdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rochdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rotherham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rotherham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rotherham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rutland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rutland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rutland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Salford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sandwell\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sandwell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sandwell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Scottish Borders, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Scottish Borders, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Scottish Borders, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sefton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sefton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sefton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sheffield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sheffield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sheffield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shetland Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shetland Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shetland Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shropshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shropshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shropshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Slough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Slough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Solihull\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solihull\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solihull\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southend-on-Sea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southend-on-Sea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southend-on-Sea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southwark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southwark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southwark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"St. Helens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"St. Helens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/St. Helens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stirling\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stirling\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stirling\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockton-on-Tees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockton-on-Tees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockton-on-Tees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stoke-on-Trent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stoke-on-Trent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Suffolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Suffolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suffolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sunderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sunderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sunderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sutton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sutton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sutton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swansea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swansea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swansea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swindon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swindon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swindon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tameside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tameside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tameside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Telford and Wrekin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Telford and Wrekin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telford and Wrekin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Thurrock\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurrock\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurrock\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torbay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torbay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torbay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torfaen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torfaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torfaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tower Hamlets\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tower Hamlets\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tower Hamlets\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Trafford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trafford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trafford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Vale of Glamorgan, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vale of Glamorgan, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vale of Glamorgan, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wakefield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakefield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakefield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Walsall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Walsall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Walsall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Waltham Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waltham Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waltham Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wandsworth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wandsworth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wandsworth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warrington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warrington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warrington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warwickshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warwickshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warwickshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Berkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Berkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Berkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Westminster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Westminster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westminster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wiltshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wiltshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wiltshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Windsor and Maidenhead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Windsor and Maidenhead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wirral\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wirral\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wirral\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wokingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wokingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wokingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wolverhampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wolverhampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wolverhampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Worcestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Worcestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Worcestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wrexham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wrexham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wrexham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Alabama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Alabama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alabama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arizona\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arizona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arizona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arkansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arkansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arkansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"California\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Colorado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Colorado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colorado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Connecticut\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Connecticut\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Connecticut\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delaware\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delaware\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"District of Columbia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"District of Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/District of Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Florida\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Florida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Florida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Georgia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Georgia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Georgia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Hawaii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawaii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawaii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Idaho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Idaho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idaho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Illinois\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Illinois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Illinois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Indiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Indiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Indiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Iowa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iowa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iowa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kentucky\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kentucky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentucky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Louisiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Louisiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louisiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maryland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maryland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maryland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Massachusetts\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Massachusetts\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Massachusetts\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Michigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Michigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Minnesota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minnesota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minnesota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Mississippi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mississippi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mississippi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Missouri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Missouri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Missouri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nebraska\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nebraska\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nebraska\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nevada\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nevada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nevada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Jersey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Jersey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Jersey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Mexico\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Ohio\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ohio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oklahoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oklahoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oklahoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oregon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oregon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oregon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Pennsylvania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pennsylvania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pennsylvania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Rhode Island\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhode Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhode Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Tennessee\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tennessee\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tennessee\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Texas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Texas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Texas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Utah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Vermont\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vermont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vermont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Washington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Washington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Washington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"West Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wisconsin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wisconsin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wisconsin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wyoming\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wyoming\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wyoming\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Australian Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Australian Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"New South Wales\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New South Wales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New South Wales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Queensland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Queensland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"South Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tasmania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tasmania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Victoria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Victoria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Victoria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Western Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Brussels-Capital Region\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels-Capital Region\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brussels-Capital Region\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Flanders\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flanders\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flanders\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Wallonia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wallonia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wallonia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Hovedstaden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hovedstaden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hovedstaden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Midtjylland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midtjylland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midtjylland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Nordjylland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nordjylland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nordjylland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Sjaelland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sjaelland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sjaelland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Syddanmark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Syddanmark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Syddanmark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Auvergne-Rhone-Alpes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auvergne-Rhone-Alpes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auvergne-Rhone-Alpes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bourgogne-Franche-Comte\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bourgogne-Franche-Comte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bourgogne-Franche-Comte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bretagne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bretagne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bretagne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Centre-Val de Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Centre-Val de Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Centre-Val de Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Corsica\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Corsica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Corsica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Grand Est\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Grand Est\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grand Est\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Hauts-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hauts-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hauts-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Ile-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ile-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ile-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Normandie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Normandie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Normandie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Nouvelle-Aquitaine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nouvelle-Aquitaine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nouvelle-Aquitaine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Occitanie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Occitanie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Occitanie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Pays de la Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pays de la Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pays de la Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Provence-Alpes-Cote d’Azur\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Provence-Alpes-Cote d’Azur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Provence-Alpes-Cote d’Azur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Baden-Wurttemberg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baden-Wurttemberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baden-Wurttemberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bavaria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bavaria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bavaria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Brandenburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brandenburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brandenburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bremen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bremen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bremen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hamburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hesse\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hesse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hesse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Lower Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lower Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lower Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Mecklenburg-Western Pomerania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mecklenburg-Western Pomerania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mecklenburg-Western Pomerania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"North Rhine-Westphalia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Rhine-Westphalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Rhine-Westphalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Rhineland-Palatinate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhineland-Palatinate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhineland-Palatinate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saarland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saarland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saarland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony-Anhalt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony-Anhalt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony-Anhalt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schleswig-Holstein\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schleswig-Holstein\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Thuringia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thuringia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thuringia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hong Kong\",\r\n \"state\": \"Hong Kong\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aichi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aichi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aichi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Akita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aomori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aomori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aomori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Chiba\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chiba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ehime\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ehime\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ehime\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gifu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gifu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gifu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gunma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gunma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gunma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hiroshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hiroshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiroshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hyogo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyogo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hyogo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ibaraki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ibaraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ibaraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ishikawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ishikawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ishikawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Iwate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iwate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iwate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagoshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagoshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagoshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kanagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kanagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kochi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kochi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kochi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kumamoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kumamoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumamoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kyoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kyoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Mie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyagi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyagi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyagi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyazaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyazaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyazaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagano\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagano\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagano\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagasaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagasaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagasaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Niigata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niigata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niigata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Oita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okinawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okinawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okinawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Osaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saitama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saitama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saitama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shimane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shimane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shizuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shizuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shizuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tochigi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tochigi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tochigi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tottori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tottori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tottori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Toyama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toyama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Toyama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Wakayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamagata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamagata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamagata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamaguchi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamaguchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamaguchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamanashi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamanashi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamanashi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Baringo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baringo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baringo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Bomet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bomet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bomet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Bungoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bungoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bungoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Busia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Busia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Busia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Elgeyo/Marakwet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Elgeyo/Marakwet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Elgeyo/Marakwet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Embu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Embu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Embu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Garissa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Garissa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Garissa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Homa Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Homa Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Homa Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Isiolo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isiolo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isiolo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kajiado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kajiado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kajiado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kakamega\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kakamega\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kakamega\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kericho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kericho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kericho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kiambu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiambu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kiambu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kilifi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kilifi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kilifi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kirinyaga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirinyaga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirinyaga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kisii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kisii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kisii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kisumu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kisumu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kisumu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kitui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kitui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kitui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kwale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kwale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kwale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Laikipia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Laikipia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Laikipia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Lamu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lamu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lamu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Machakos\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Machakos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Machakos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Makueni\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Makueni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Makueni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Marsabit\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marsabit\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marsabit\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Meru\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Meru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Meru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Migori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Migori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Migori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Mombasa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mombasa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mombasa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Murang’a\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Murang’a\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Murang’a\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nairobi City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nairobi City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nakuru\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nakuru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakuru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Namanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Namanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Namanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nandi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nandi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nandi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Narok\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Narok\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Narok\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyamira\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyamira\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyamira\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyandarua\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyandarua\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyandarua\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyeri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyeri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyeri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Samburu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Samburu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Samburu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Siaya\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Siaya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Siaya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Taita/Taveta\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taita/Taveta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taita/Taveta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Tana River\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tana River\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tana River\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Tharaka-Nithi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tharaka-Nithi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tharaka-Nithi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Trans Nzoia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trans Nzoia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trans Nzoia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Turkana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Turkana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Turkana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Uasin Gishu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Uasin Gishu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uasin Gishu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Vihiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vihiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vihiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Wajir\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wajir\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wajir\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"West Pokot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Pokot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Pokot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Johor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Johor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kedah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kedah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kedah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kelantan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kelantan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kelantan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur \",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuala Lumpur \",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Melaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Negeri Sembilan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negeri Sembilan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pahang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pahang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pahang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perlis\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perlis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perlis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pulau Pinang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pulau Pinang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pulau Pinang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Sarawak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sarawak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sarawak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Selangor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selangor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Terengganu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Terengganu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Terengganu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Drenthe\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Drenthe\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Drenthe\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Flevoland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flevoland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flevoland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Fryslan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fryslan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fryslan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Gelderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gelderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gelderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Groningen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Groningen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Groningen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Limburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Noord-Brabant\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Noord-Brabant\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Noord-Brabant\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Noord-Holland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Noord-Holland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Noord-Holland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Overijssel\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Overijssel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Overijssel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Utrecht\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utrecht\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utrecht\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Zeeland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zeeland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zeeland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Zuid-Holland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zuid-Holland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zuid-Holland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Auckland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Bay of Plenty\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bay of Plenty\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bay of Plenty\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Canterbury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Canterbury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canterbury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Gisborne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gisborne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gisborne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Hawke’s Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawke’s Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawke’s Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manawatu-Wanganui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manawatu-Wanganui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Marlborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marlborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marlborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Nelson\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nelson\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nelson\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Northland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Taranaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taranaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taranaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Waikato\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waikato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waikato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Wellington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wellington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wellington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"West Coast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Coast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Coast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Abia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Abia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Abia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Akwa Ibom\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akwa Ibom\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akwa Ibom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Anambra\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Anambra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Anambra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Bayelsa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bayelsa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bayelsa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Benue\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Benue\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Benue\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Cross River\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cross River\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cross River\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Delta\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ebonyi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ebonyi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ebonyi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Edo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ekiti\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ekiti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ekiti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Enugu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enugu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enugu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Federal Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Federal Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Federal Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Imo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Imo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Imo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kaduna\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kaduna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kaduna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kebbi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kebbi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kebbi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kogi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kogi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kogi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kwara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kwara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kwara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Lagos\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Nasarawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nasarawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nasarawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Niger\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niger\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niger\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ogun\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ogun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ogun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ondo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ondo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ondo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Osun\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Oyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Plateau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plateau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plateau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Rivers\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rivers\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rivers\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Sokoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sokoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sokoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Zamfara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zamfara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zamfara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Aveiro\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aveiro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aveiro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Beja\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Beja\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Beja\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Braga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Braga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Braganca\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Braganca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braganca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Castelo Branco\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Castelo Branco\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Castelo Branco\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Coimbra\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coimbra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coimbra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Evora\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Evora\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Evora\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Faro\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Faro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Faro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Guarda\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Guarda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guarda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Leiria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leiria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leiria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Lisboa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisboa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisboa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Portalegre\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portalegre\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portalegre\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Porto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Porto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Porto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Santarem\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santarem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Santarem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Setubal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Setubal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Setubal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Viana do Castelo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Viana do Castelo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viana do Castelo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Vila Real\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vila Real\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vila Real\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Viseu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Viseu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viseu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Singapore\",\r\n \"state\": \"Singapore\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eastern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Free State\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Free State\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Free State\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Gauteng\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gauteng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gauteng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"KwaZulu-Natal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"KwaZulu-Natal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/KwaZulu-Natal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Limpopo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limpopo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limpopo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Mpumalanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mpumalanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mpumalanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"North West\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North West\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North West\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Northern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Western Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Aargau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aargau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aargau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Appenzell Ausserrhoden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Appenzell Ausserrhoden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Appenzell Ausserrhoden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Appenzell Innerrhoden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Appenzell Innerrhoden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Appenzell Innerrhoden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Basel-Landschaft\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Basel-Landschaft\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basel-Landschaft\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Basel-Stadt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Basel-Stadt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basel-Stadt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Bern\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Fribourg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fribourg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fribourg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Geneve\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneve\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Geneve\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Glarus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glarus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glarus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Graubunden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Graubunden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Graubunden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Jura\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jura\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jura\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Luzern\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luzern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luzern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Neuchatel\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neuchatel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neuchatel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Nidwalden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nidwalden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nidwalden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Obwalden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Obwalden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Obwalden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Sankt Gallen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sankt Gallen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sankt Gallen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Schaffhausen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schaffhausen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schaffhausen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Schwyz\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schwyz\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schwyz\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Solothurn\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solothurn\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solothurn\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Thurgau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurgau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurgau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Ticino\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ticino\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ticino\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Uri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Uri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Valais\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Valais\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valais\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Vaud\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vaud\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vaud\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Zug\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zug\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zug\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Zurich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Aberdeen City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aberdeen City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aberdeen City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Angus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Angus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Angus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Antrim and Newtownabbey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antrim and Newtownabbey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ards and North Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ards and North Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ards and North Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Argyll and Bute\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Argyll and Bute\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Argyll and Bute\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Armagh, Banbridge and Craigavon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Armagh, Banbridge and Craigavon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barking and Dagenham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barking and Dagenham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barking and Dagenham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bath and North East Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bath and North East Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bedford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bedford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bedford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Belfast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Belfast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belfast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bexley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bexley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bexley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Birmingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Birmingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Birmingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackburn with Darwen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackburn with Darwen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blaenau Gwent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blaenau Gwent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bolton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bolton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bournemouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bournemouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bournemouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bracknell Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bracknell Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bracknell Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bradford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bradford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bradford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bridgend\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bridgend\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bridgend\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brighton and Hove\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brighton and Hove\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bristol, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bristol, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bristol, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bromley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bromley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bromley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Buckinghamshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buckinghamshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buckinghamshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Caerphilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Caerphilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caerphilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Calderdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Calderdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calderdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cambridgeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cambridgeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cambridgeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Camden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Camden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cardiff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cardiff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cardiff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Carmarthenshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Carmarthenshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carmarthenshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Causeway Coast and Glens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeway Coast and Glens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Central Bedfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Central Bedfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ceredigion\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ceredigion\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceredigion\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire East\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire East\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire East\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire West and Chester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire West and Chester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire West and Chester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Clackmannanshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Clackmannanshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clackmannanshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Conwy\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Conwy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Conwy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cornwall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cornwall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cornwall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Coventry\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coventry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coventry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Croydon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Croydon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Croydon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cumbria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cumbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cumbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Darlington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Darlington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darlington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Denbighshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denbighshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denbighshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derby\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derby\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derby\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derbyshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derbyshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derbyshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derry and Strabane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derry and Strabane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derry and Strabane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Devon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Devon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Devon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Doncaster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Doncaster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Doncaster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dorset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dorset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dorset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dudley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dudley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dudley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dumfries and Galloway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dumfries and Galloway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dundee City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dundee City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dundee City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Durham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Durham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ealing\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ealing\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ealing\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Riding of Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Riding of Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edinburgh, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edinburgh, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Eilean Siar\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eilean Siar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eilean Siar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Enfield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enfield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enfield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Essex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Essex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Essex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Falkirk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Falkirk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Falkirk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fermanagh and Omagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fermanagh and Omagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fife\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fife\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fife\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Flintshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flintshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flintshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gateshead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gateshead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gateshead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Glasgow City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glasgow City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glasgow City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Greenwich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Greenwich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Greenwich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gwynedd\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gwynedd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gwynedd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hackney\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hackney\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hackney\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Halton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Halton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Halton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hammersmith and Fulham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hammersmith and Fulham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hammersmith and Fulham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Haringey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Haringey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haringey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Harrow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Harrow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harrow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hartlepool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hartlepool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hartlepool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Havering\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Havering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Havering\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Herefordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Herefordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herefordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hertfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hertfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hertfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Highland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Highland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Highland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hillingdon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hillingdon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hillingdon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hounslow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hounslow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hounslow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Inverclyde\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Inverclyde\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inverclyde\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Anglesey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Anglesey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Wight\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Wight\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Wight\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isles of Scilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isles of Scilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isles of Scilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Islington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Islington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kensington and Chelsea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kensington and Chelsea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kensington and Chelsea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Hull, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Hull, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kirklees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirklees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Knowsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Knowsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Knowsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lambeth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lambeth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lambeth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lancashire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lancashire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lancashire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leeds\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leeds\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leeds\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leicester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leicester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leicester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lewisham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lewisham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lewisham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisburn and Castlereagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisburn and Castlereagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Liverpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Liverpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liverpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"London\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/London\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Luton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Manchester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Medway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Medway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merthyr Tydfil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merthyr Tydfil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid Ulster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid Ulster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid Ulster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid and East Antrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid and East Antrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Midlothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midlothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midlothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Milton Keynes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milton Keynes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Milton Keynes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Monmouthshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Monmouthshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monmouthshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Moray\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neath Port Talbot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neath Port Talbot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newcastle upon Tyne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newcastle upon Tyne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newcastle upon Tyne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newry, Mourne and Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newry, Mourne and Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newry, Mourne and Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Norfolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Norfolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norfolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North East Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North East Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North East Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northamptonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northamptonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northamptonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northumberland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northumberland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northumberland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Nottingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nottingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nottingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oldham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oldham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oldham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Orkney Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Orkney Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orkney Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oxfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oxfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oxfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Pembrokeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pembrokeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pembrokeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Perth and Kinross\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth and Kinross\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perth and Kinross\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Peterborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Peterborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peterborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Plymouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plymouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plymouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Poole\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Poole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Portsmouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portsmouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portsmouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Powys\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Powys\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Powys\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Reading\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reading\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Reading\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redbridge\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redbridge\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redbridge\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redcar and Cleveland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redcar and Cleveland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhondda Cynon Taff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhondda Cynon Taff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Richmond upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Richmond upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Richmond upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rochdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rochdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rochdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rotherham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rotherham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rotherham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rutland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rutland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rutland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Salford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sandwell\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sandwell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sandwell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Scottish Borders, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Scottish Borders, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Scottish Borders, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sefton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sefton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sefton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sheffield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sheffield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sheffield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shetland Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shetland Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shetland Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shropshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shropshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shropshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Slough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Slough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Solihull\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solihull\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solihull\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southend-on-Sea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southend-on-Sea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southend-on-Sea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southwark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southwark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southwark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"St. Helens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"St. Helens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/St. Helens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stirling\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stirling\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stirling\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockton-on-Tees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockton-on-Tees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockton-on-Tees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stoke-on-Trent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stoke-on-Trent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Suffolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Suffolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suffolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sunderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sunderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sunderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sutton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sutton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sutton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swansea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swansea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swansea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swindon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swindon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swindon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tameside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tameside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tameside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Telford and Wrekin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Telford and Wrekin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telford and Wrekin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Thurrock\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurrock\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurrock\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torbay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torbay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torbay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torfaen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torfaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torfaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tower Hamlets\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tower Hamlets\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tower Hamlets\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Trafford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trafford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trafford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Vale of Glamorgan, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vale of Glamorgan, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vale of Glamorgan, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wakefield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakefield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakefield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Walsall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Walsall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Walsall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Waltham Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waltham Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waltham Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wandsworth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wandsworth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wandsworth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warrington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warrington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warrington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warwickshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warwickshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warwickshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Berkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Berkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Berkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Westminster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Westminster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westminster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wiltshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wiltshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wiltshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Windsor and Maidenhead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Windsor and Maidenhead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wirral\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wirral\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wirral\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wokingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wokingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wokingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wolverhampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wolverhampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wolverhampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Worcestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Worcestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Worcestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wrexham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wrexham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wrexham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Alabama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Alabama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alabama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arizona\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arizona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arizona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arkansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arkansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arkansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"California\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Colorado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Colorado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colorado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Connecticut\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Connecticut\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Connecticut\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delaware\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delaware\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"District of Columbia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"District of Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/District of Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Florida\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Florida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Florida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Georgia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Georgia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Georgia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Hawaii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawaii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawaii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Idaho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Idaho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idaho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Illinois\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Illinois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Illinois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Indiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Indiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Indiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Iowa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iowa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iowa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kentucky\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kentucky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentucky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Louisiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Louisiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louisiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maryland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maryland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maryland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Massachusetts\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Massachusetts\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Massachusetts\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Michigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Michigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Minnesota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minnesota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minnesota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Mississippi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mississippi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mississippi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Missouri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Missouri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Missouri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nebraska\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nebraska\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nebraska\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nevada\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nevada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nevada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Jersey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Jersey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Jersey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Mexico\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Ohio\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ohio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oklahoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oklahoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oklahoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oregon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oregon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oregon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Pennsylvania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pennsylvania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pennsylvania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Rhode Island\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhode Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhode Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Tennessee\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tennessee\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tennessee\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Texas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Texas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Texas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Utah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Vermont\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vermont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vermont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Washington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Washington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Washington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"West Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wisconsin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wisconsin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wisconsin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wyoming\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wyoming\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wyoming\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceProviders.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceProviders.json index 4d253f04a439..2dcc766467d7 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceProviders.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestGetPeeringServiceProviders.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceProviders?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceProviders?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f8c16ae-fc79-4dd8-8800-128ebf72cb38" + "cbf90f3e-50dd-4997-a8b7-f633ed6c16ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "ddec3746-bd0f-4566-9ebd-9b9f54f7a46c" + "d4d2e91a-a4b9-4c9d-823c-90b6b2d5f3f6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "ddfd5675-570a-4668-bb86-ddcb0e8d0b13" + "48532fdb-3836-4508-844f-b772adc21480" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213528Z:ddfd5675-570a-4668-bb86-ddcb0e8d0b13" + "NORTHEUROPE:20210409T080639Z:48532fdb-3836-4508-844f-b772adc21480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:35:28 GMT" + "Fri, 09 Apr 2021 08:06:38 GMT" ], "Content-Length": [ - "1709" + "3474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,7 +57,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Akami Int.\"\r\n },\r\n \"name\": \"Akami Int.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"AT T\"\r\n },\r\n \"name\": \"AT T\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"CenturyLink\"\r\n },\r\n \"name\": \"CenturyLink\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Cogent Communications Inc.\"\r\n },\r\n \"name\": \"Cogent Communications Inc.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"FooBar\"\r\n },\r\n \"name\": \"FooBar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"L3 LLC\"\r\n },\r\n \"name\": \"L3 LLC\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Level 3 Communications LLC\"\r\n },\r\n \"name\": \"Level 3 Communications LLC\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"NTT\"\r\n },\r\n \"name\": \"NTT\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Verizon Communications Inc.\"\r\n },\r\n \"name\": \"Verizon Communications Inc.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"IIJ\"\r\n },\r\n \"name\": \"IIJ\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"NTTCom\"\r\n },\r\n \"name\": \"NTTCom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Kordia Limited\"\r\n },\r\n \"name\": \"Kordia Limited\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Liquid Telecommunications Ltd\"\r\n },\r\n \"name\": \"Liquid Telecommunications Ltd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"InterCloud\"\r\n },\r\n \"name\": \"InterCloud\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"PCCW Global\"\r\n },\r\n \"name\": \"PCCW Global\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Computer Concepts Limited\"\r\n },\r\n \"name\": \"Computer Concepts Limited\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Singnet\"\r\n },\r\n \"name\": \"Singnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"NTT Communications - Flexible InterConnect\"\r\n },\r\n \"name\": \"NTT Communications - Flexible InterConnect\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"NAPAfrica\"\r\n },\r\n \"name\": \"NAPAfrica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Vocusgroup NZ\"\r\n },\r\n \"name\": \"Vocusgroup NZ\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"CMC NETWORKS\"\r\n },\r\n \"name\": \"CMC NETWORKS\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"MainOne\"\r\n },\r\n \"name\": \"MainOne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Swisscom Switzerland Ltd\"\r\n },\r\n \"name\": \"Swisscom Switzerland Ltd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"DE-CIX\"\r\n },\r\n \"name\": \"DE-CIX\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"NTT Cloud Communications\"\r\n },\r\n \"name\": \"NTT Cloud Communications\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"CenturyLink\"\r\n },\r\n \"name\": \"CenturyLink\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Colt Technology Services\"\r\n },\r\n \"name\": \"Colt Technology Services\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestListPeeringService.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestListPeeringService.json index 3b09fcbfa07c..f7794a358efd 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestListPeeringService.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestListPeeringService.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServices?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZXM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServices?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZXM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4da3b8bb-e67c-49bc-8440-f7085e01291b" + "3bb95338-220b-4791-a554-1eee06527d74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "1568e68e-2d08-4376-a6a4-76e36592c5d4" + "44405283-45c4-4ae5-9a1f-978ddba80bcf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "dea62677-9b53-4876-a519-bbf1c3ffcb1c" + "5b18a73a-6016-40c0-8486-89a0f9ec3a15" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213649Z:dea62677-9b53-4876-a519-bbf1c3ffcb1c" + "NORTHEUROPE:20210409T080805Z:5b18a73a-6016-40c0-8486-89a0f9ec3a15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:36:48 GMT" + "Fri, 09 Apr 2021 08:08:04 GMT" ], "Content-Length": [ - "564" + "16653" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,7 +57,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"7b7f758c-85c0-4ff5-82c0-9b48ced0c6e5\",\r\n \"name\": \"myPeeringService9499\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9499\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService4995\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4995\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService7582\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7582\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService9499\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9499\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService6689\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService6689\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService1739\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService1739\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService5561\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService5561\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService8762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService8762\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService4360\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4360\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService6107\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService6107\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService1442\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService1442\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService3281\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3281\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService9317\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9317\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService5807\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService5807\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService3057\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3057\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService4356\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4356\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService2099\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService2099\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService9104\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9104\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService6995\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService6995\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService204\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService204\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService4745\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService4745\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService3357\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3357\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService7234\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7234\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService9584\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9584\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService7203\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7203\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService226\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService226\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService8510\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService8510\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService641\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService641\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService9475\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9475\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService7958\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService7958\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService3427\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3427\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService6829\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService6829\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService8869\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService8869\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService9938\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9938\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService3461\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService3461\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService962\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService962\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestNewPeeringService.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestNewPeeringService.json index 846e96a951f4..2555fdbd9930 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestNewPeeringService.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.PeeringServiceTests/TestNewPeeringService.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b29f28d-feb9-4041-8464-3c1cd460a5cb" + "d080b185-1311-439d-9353-85b18177ce7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "3a7817d3-808c-4d02-867f-35f1ad9a445c" + "5b810080-de0d-4f49-90c8-bc83c3d8171a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "786c6102-61db-4fc2-adc5-d6f506b9b504" + "33290656-bbe5-440c-9ba0-c7c440d60627" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213459Z:786c6102-61db-4fc2-adc5-d6f506b9b504" + "NORTHEUROPE:20210409T080553Z:33290656-bbe5-440c-9ba0-c7c440d60627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:34:59 GMT" + "Fri, 09 Apr 2021 08:05:52 GMT" ], "Content-Length": [ - "141166" + "191674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,32 +57,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Australian Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Australian Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"New South Wales\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New South Wales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New South Wales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Queensland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Queensland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"South Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tasmania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tasmania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Victoria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Victoria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Victoria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Western Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Auvergne-Rhone-Alpes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auvergne-Rhone-Alpes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auvergne-Rhone-Alpes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bourgogne-Franche-Comte\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bourgogne-Franche-Comte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bourgogne-Franche-Comte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bretagne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bretagne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bretagne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Centre-Val de Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Centre-Val de Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Centre-Val de Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Corsica\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Corsica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Corsica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Grand Est\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Grand Est\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grand Est\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Hauts-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hauts-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hauts-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Ile-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ile-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ile-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Normandie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Normandie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Normandie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Nouvelle-Aquitaine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nouvelle-Aquitaine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nouvelle-Aquitaine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Occitanie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Occitanie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Occitanie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Pays de la Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pays de la Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pays de la Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Provence-Alpes-Cote d’Azur\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Provence-Alpes-Cote d’Azur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Provence-Alpes-Cote d’Azur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Baden-Wurttemberg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baden-Wurttemberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baden-Wurttemberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bavaria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bavaria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bavaria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Brandenburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brandenburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brandenburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bremen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bremen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bremen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hamburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hesse\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hesse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hesse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Lower Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lower Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lower Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Mecklenburg-Western Pomerania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mecklenburg-Western Pomerania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mecklenburg-Western Pomerania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"North Rhine-Westphalia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Rhine-Westphalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Rhine-Westphalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Rhineland-Palatinate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhineland-Palatinate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhineland-Palatinate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saarland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saarland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saarland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony-Anhalt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony-Anhalt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony-Anhalt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schleswig-Holstein\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schleswig-Holstein\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Thuringia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thuringia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thuringia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hong Kong\",\r\n \"state\": \"Hong Kong\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aichi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aichi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aichi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Akita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aomori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aomori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aomori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Chiba\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chiba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ehime\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ehime\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ehime\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gifu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gifu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gifu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gunma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gunma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gunma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hiroshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hiroshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiroshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hyogo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyogo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hyogo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ibaraki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ibaraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ibaraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ishikawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ishikawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ishikawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Iwate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iwate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iwate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagoshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagoshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagoshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kanagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kanagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kochi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kochi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kochi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kumamoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kumamoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumamoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kyoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kyoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Mie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyagi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyagi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyagi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyazaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyazaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyazaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagano\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagano\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagano\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagasaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagasaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagasaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Niigata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niigata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niigata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Oita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okinawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okinawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okinawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Osaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saitama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saitama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saitama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shimane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shimane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shizuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shizuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shizuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tochigi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tochigi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tochigi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tottori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tottori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tottori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Toyama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toyama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Toyama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Wakayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamagata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamagata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamagata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamaguchi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamaguchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamaguchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamanashi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamanashi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamanashi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Johor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Johor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kedah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kedah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kedah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kelantan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kelantan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kelantan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur \",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuala Lumpur \",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Melaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Negeri Sembilan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negeri Sembilan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pahang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pahang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pahang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perlis\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perlis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perlis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pulau Pinang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pulau Pinang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pulau Pinang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Sarawak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sarawak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sarawak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Selangor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selangor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Terengganu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Terengganu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Terengganu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Auckland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Bay of Plenty\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bay of Plenty\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bay of Plenty\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Canterbury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Canterbury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canterbury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Gisborne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gisborne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gisborne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Hawke’s Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawke’s Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawke’s Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manawatu-Wanganui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manawatu-Wanganui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Marlborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marlborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marlborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Nelson\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nelson\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nelson\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Northland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Taranaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taranaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taranaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Waikato\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waikato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waikato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Wellington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wellington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wellington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"West Coast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Coast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Coast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Singapore\",\r\n \"state\": \"Singapore\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eastern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Free State\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Free State\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Free State\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Gauteng\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gauteng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gauteng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"KwaZulu-Natal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"KwaZulu-Natal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/KwaZulu-Natal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Limpopo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limpopo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limpopo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Mpumalanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mpumalanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mpumalanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"North West\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North West\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North West\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Northern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Western Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Aberdeen City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aberdeen City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aberdeen City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Angus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Angus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Angus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Antrim and Newtownabbey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antrim and Newtownabbey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ards and North Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ards and North Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ards and North Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Argyll and Bute\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Argyll and Bute\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Argyll and Bute\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Armagh, Banbridge and Craigavon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Armagh, Banbridge and Craigavon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barking and Dagenham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barking and Dagenham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barking and Dagenham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bath and North East Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bath and North East Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bedford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bedford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bedford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Belfast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Belfast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belfast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bexley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bexley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bexley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Birmingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Birmingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Birmingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackburn with Darwen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackburn with Darwen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blaenau Gwent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blaenau Gwent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bolton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bolton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bournemouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bournemouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bournemouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bracknell Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bracknell Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bracknell Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bradford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bradford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bradford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bridgend\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bridgend\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bridgend\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brighton and Hove\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brighton and Hove\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bristol, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bristol, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bristol, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bromley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bromley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bromley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Buckinghamshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buckinghamshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buckinghamshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Caerphilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Caerphilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caerphilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Calderdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Calderdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calderdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cambridgeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cambridgeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cambridgeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Camden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Camden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cardiff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cardiff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cardiff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Carmarthenshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Carmarthenshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carmarthenshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Causeway Coast and Glens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeway Coast and Glens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Central Bedfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Central Bedfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ceredigion\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ceredigion\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceredigion\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire East\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire East\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire East\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire West and Chester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire West and Chester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire West and Chester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Clackmannanshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Clackmannanshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clackmannanshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Conwy\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Conwy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Conwy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cornwall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cornwall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cornwall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Coventry\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coventry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coventry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Croydon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Croydon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Croydon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cumbria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cumbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cumbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Darlington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Darlington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darlington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Denbighshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denbighshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denbighshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derby\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derby\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derby\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derbyshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derbyshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derbyshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derry and Strabane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derry and Strabane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derry and Strabane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Devon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Devon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Devon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Doncaster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Doncaster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Doncaster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dorset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dorset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dorset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dudley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dudley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dudley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dumfries and Galloway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dumfries and Galloway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dundee City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dundee City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dundee City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Durham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Durham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ealing\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ealing\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ealing\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Riding of Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Riding of Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edinburgh, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edinburgh, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Eilean Siar\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eilean Siar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eilean Siar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Enfield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enfield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enfield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Essex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Essex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Essex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Falkirk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Falkirk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Falkirk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fermanagh and Omagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fermanagh and Omagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fife\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fife\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fife\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Flintshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flintshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flintshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gateshead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gateshead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gateshead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Glasgow City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glasgow City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glasgow City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Greenwich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Greenwich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Greenwich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gwynedd\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gwynedd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gwynedd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hackney\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hackney\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hackney\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Halton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Halton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Halton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hammersmith and Fulham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hammersmith and Fulham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hammersmith and Fulham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Haringey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Haringey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haringey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Harrow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Harrow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harrow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hartlepool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hartlepool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hartlepool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Havering\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Havering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Havering\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Herefordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Herefordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herefordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hertfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hertfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hertfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Highland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Highland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Highland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hillingdon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hillingdon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hillingdon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hounslow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hounslow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hounslow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Inverclyde\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Inverclyde\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inverclyde\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Anglesey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Anglesey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Wight\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Wight\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Wight\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isles of Scilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isles of Scilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isles of Scilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Islington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Islington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kensington and Chelsea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kensington and Chelsea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kensington and Chelsea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Hull, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Hull, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kirklees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirklees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Knowsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Knowsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Knowsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lambeth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lambeth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lambeth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lancashire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lancashire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lancashire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leeds\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leeds\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leeds\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leicester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leicester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leicester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lewisham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lewisham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lewisham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisburn and Castlereagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisburn and Castlereagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Liverpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Liverpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liverpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"London\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/London\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Luton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Manchester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Medway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Medway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merthyr Tydfil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merthyr Tydfil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid Ulster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid Ulster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid Ulster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid and East Antrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid and East Antrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Midlothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midlothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midlothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Milton Keynes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milton Keynes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Milton Keynes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Monmouthshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Monmouthshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monmouthshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Moray\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neath Port Talbot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neath Port Talbot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newcastle upon Tyne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newcastle upon Tyne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newcastle upon Tyne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newry, Mourne and Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newry, Mourne and Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newry, Mourne and Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Norfolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Norfolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norfolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North East Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North East Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North East Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northamptonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northamptonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northamptonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northumberland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northumberland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northumberland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Nottingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nottingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nottingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oldham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oldham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oldham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Orkney Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Orkney Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orkney Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oxfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oxfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oxfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Pembrokeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pembrokeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pembrokeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Perth and Kinross\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth and Kinross\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perth and Kinross\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Peterborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Peterborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peterborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Plymouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plymouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plymouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Poole\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Poole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Portsmouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portsmouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portsmouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Powys\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Powys\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Powys\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Reading\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reading\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Reading\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redbridge\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redbridge\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redbridge\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redcar and Cleveland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redcar and Cleveland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhondda Cynon Taff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhondda Cynon Taff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Richmond upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Richmond upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Richmond upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rochdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rochdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rochdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rotherham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rotherham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rotherham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rutland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rutland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rutland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Salford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sandwell\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sandwell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sandwell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Scottish Borders, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Scottish Borders, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Scottish Borders, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sefton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sefton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sefton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sheffield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sheffield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sheffield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shetland Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shetland Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shetland Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shropshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shropshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shropshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Slough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Slough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Solihull\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solihull\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solihull\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southend-on-Sea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southend-on-Sea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southend-on-Sea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southwark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southwark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southwark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"St. Helens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"St. Helens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/St. Helens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stirling\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stirling\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stirling\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockton-on-Tees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockton-on-Tees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockton-on-Tees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stoke-on-Trent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stoke-on-Trent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Suffolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Suffolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suffolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sunderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sunderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sunderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sutton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sutton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sutton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swansea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swansea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swansea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swindon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swindon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swindon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tameside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tameside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tameside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Telford and Wrekin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Telford and Wrekin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telford and Wrekin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Thurrock\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurrock\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurrock\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torbay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torbay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torbay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torfaen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torfaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torfaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tower Hamlets\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tower Hamlets\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tower Hamlets\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Trafford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trafford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trafford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Vale of Glamorgan, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vale of Glamorgan, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vale of Glamorgan, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wakefield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakefield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakefield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Walsall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Walsall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Walsall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Waltham Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waltham Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waltham Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wandsworth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wandsworth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wandsworth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warrington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warrington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warrington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warwickshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warwickshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warwickshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Berkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Berkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Berkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Westminster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Westminster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westminster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wiltshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wiltshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wiltshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Windsor and Maidenhead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Windsor and Maidenhead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wirral\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wirral\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wirral\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wokingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wokingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wokingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wolverhampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wolverhampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wolverhampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Worcestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Worcestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Worcestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wrexham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wrexham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wrexham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Alabama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Alabama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alabama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arizona\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arizona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arizona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arkansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arkansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arkansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"California\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Colorado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Colorado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colorado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Connecticut\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Connecticut\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Connecticut\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delaware\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delaware\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"District of Columbia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"District of Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/District of Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Florida\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Florida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Florida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Georgia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Georgia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Georgia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Hawaii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawaii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawaii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Idaho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Idaho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idaho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Illinois\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Illinois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Illinois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Indiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Indiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Indiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Iowa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iowa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iowa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kentucky\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kentucky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentucky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Louisiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Louisiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louisiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maryland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maryland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maryland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Massachusetts\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Massachusetts\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Massachusetts\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Michigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Michigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Minnesota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minnesota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minnesota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Mississippi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mississippi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mississippi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Missouri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Missouri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Missouri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nebraska\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nebraska\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nebraska\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nevada\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nevada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nevada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Jersey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Jersey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Jersey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Mexico\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Ohio\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ohio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oklahoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oklahoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oklahoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oregon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oregon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oregon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Pennsylvania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pennsylvania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pennsylvania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Rhode Island\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhode Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhode Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Tennessee\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tennessee\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tennessee\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Texas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Texas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Texas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Utah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Vermont\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vermont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vermont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Washington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Washington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Washington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"West Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wisconsin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wisconsin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wisconsin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wyoming\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wyoming\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wyoming\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Australian Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Australian Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"New South Wales\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New South Wales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New South Wales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Queensland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Queensland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"South Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tasmania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tasmania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Victoria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Victoria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Victoria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Western Australia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Australia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Australia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Brussels-Capital Region\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels-Capital Region\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brussels-Capital Region\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Flanders\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flanders\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flanders\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belgium\",\r\n \"state\": \"Wallonia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wallonia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wallonia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Hovedstaden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hovedstaden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hovedstaden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Midtjylland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midtjylland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midtjylland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Nordjylland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nordjylland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nordjylland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Sjaelland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sjaelland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sjaelland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Syddanmark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Syddanmark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Syddanmark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Auvergne-Rhone-Alpes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auvergne-Rhone-Alpes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auvergne-Rhone-Alpes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bourgogne-Franche-Comte\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bourgogne-Franche-Comte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bourgogne-Franche-Comte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Bretagne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bretagne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bretagne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Centre-Val de Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Centre-Val de Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Centre-Val de Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Corsica\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Corsica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Corsica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Grand Est\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Grand Est\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grand Est\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Hauts-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hauts-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hauts-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Ile-de-France\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ile-de-France\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ile-de-France\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Normandie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Normandie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Normandie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Nouvelle-Aquitaine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nouvelle-Aquitaine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nouvelle-Aquitaine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Occitanie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Occitanie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Occitanie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Pays de la Loire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pays de la Loire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pays de la Loire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"France\",\r\n \"state\": \"Provence-Alpes-Cote d’Azur\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Provence-Alpes-Cote d’Azur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Provence-Alpes-Cote d’Azur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Baden-Wurttemberg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baden-Wurttemberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baden-Wurttemberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bavaria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bavaria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bavaria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Brandenburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brandenburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brandenburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Bremen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bremen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bremen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hamburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Hesse\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hesse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hesse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Lower Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lower Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lower Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Mecklenburg-Western Pomerania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mecklenburg-Western Pomerania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mecklenburg-Western Pomerania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"North Rhine-Westphalia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Rhine-Westphalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Rhine-Westphalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Rhineland-Palatinate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhineland-Palatinate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhineland-Palatinate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saarland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saarland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saarland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Saxony-Anhalt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saxony-Anhalt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saxony-Anhalt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schleswig-Holstein\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schleswig-Holstein\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Germany\",\r\n \"state\": \"Thuringia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thuringia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thuringia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hong Kong\",\r\n \"state\": \"Hong Kong\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aichi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aichi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aichi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Akita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Aomori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aomori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aomori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Chiba\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chiba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ehime\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ehime\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ehime\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fukushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fukushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gifu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gifu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gifu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Gunma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gunma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gunma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hiroshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hiroshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiroshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Hyogo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyogo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hyogo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ibaraki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ibaraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ibaraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Ishikawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ishikawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ishikawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Iwate\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iwate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iwate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kagoshima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kagoshima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kagoshima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kanagawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kanagawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanagawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kochi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kochi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kochi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kumamoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kumamoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumamoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Kyoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kyoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Mie\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyagi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyagi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyagi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Miyazaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miyazaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miyazaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagano\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagano\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagano\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nagasaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nagasaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nagasaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Nara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Niigata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niigata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niigata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Oita\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Okinawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Okinawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Okinawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Osaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Saitama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Saitama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saitama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shimane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shimane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Shizuoka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shizuoka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shizuoka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tochigi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tochigi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tochigi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokushima\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokushima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokushima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tokyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Tottori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tottori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tottori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Toyama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toyama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Toyama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Wakayama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakayama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakayama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamagata\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamagata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamagata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamaguchi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamaguchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamaguchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Yamanashi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Yamanashi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yamanashi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Baringo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Baringo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baringo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Bomet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bomet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bomet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Bungoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bungoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bungoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Busia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Busia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Busia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Elgeyo/Marakwet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Elgeyo/Marakwet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Elgeyo/Marakwet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Embu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Embu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Embu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Garissa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Garissa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Garissa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Homa Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Homa Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Homa Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Isiolo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isiolo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isiolo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kajiado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kajiado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kajiado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kakamega\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kakamega\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kakamega\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kericho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kericho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kericho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kiambu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiambu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kiambu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kilifi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kilifi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kilifi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kirinyaga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirinyaga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirinyaga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kisii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kisii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kisii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kisumu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kisumu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kisumu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kitui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kitui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kitui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Kwale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kwale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kwale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Laikipia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Laikipia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Laikipia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Lamu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lamu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lamu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Machakos\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Machakos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Machakos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Makueni\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Makueni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Makueni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Marsabit\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marsabit\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marsabit\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Meru\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Meru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Meru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Migori\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Migori\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Migori\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Mombasa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mombasa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mombasa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Murang’a\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Murang’a\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Murang’a\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nairobi City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nairobi City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nakuru\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nakuru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakuru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Namanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Namanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Namanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nandi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nandi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nandi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Narok\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Narok\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Narok\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyamira\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyamira\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyamira\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyandarua\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyandarua\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyandarua\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Nyeri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nyeri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nyeri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Samburu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Samburu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Samburu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Siaya\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Siaya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Siaya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Taita/Taveta\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taita/Taveta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taita/Taveta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Tana River\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tana River\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tana River\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Tharaka-Nithi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tharaka-Nithi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tharaka-Nithi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Trans Nzoia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trans Nzoia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trans Nzoia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Turkana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Turkana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Turkana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Uasin Gishu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Uasin Gishu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uasin Gishu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Vihiga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vihiga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vihiga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"Wajir\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wajir\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wajir\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Kenya\",\r\n \"state\": \"West Pokot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Pokot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Pokot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Johor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Johor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kedah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kedah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kedah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kelantan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kelantan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kelantan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur \",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuala Lumpur \",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Melaka\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melaka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melaka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Negeri Sembilan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negeri Sembilan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pahang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pahang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pahang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Perlis\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perlis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perlis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Pulau Pinang\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pulau Pinang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pulau Pinang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Sarawak\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sarawak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sarawak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Selangor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selangor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Terengganu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Terengganu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Terengganu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Drenthe\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Drenthe\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Drenthe\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Flevoland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flevoland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flevoland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Fryslan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fryslan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fryslan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Gelderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gelderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gelderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Groningen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Groningen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Groningen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Limburg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Noord-Brabant\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Noord-Brabant\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Noord-Brabant\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Noord-Holland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Noord-Holland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Noord-Holland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Overijssel\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Overijssel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Overijssel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Utrecht\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utrecht\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utrecht\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Zeeland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zeeland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zeeland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Netherlands\",\r\n \"state\": \"Zuid-Holland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zuid-Holland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zuid-Holland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Auckland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Bay of Plenty\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bay of Plenty\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bay of Plenty\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Canterbury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Canterbury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canterbury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Gisborne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gisborne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gisborne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Hawke’s Bay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawke’s Bay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawke’s Bay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manawatu-Wanganui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manawatu-Wanganui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Marlborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marlborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marlborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Nelson\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nelson\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nelson\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Northland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Taranaki\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taranaki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taranaki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Waikato\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waikato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waikato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"Wellington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wellington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wellington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"New Zealand\",\r\n \"state\": \"West Coast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Coast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Coast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Abia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Abia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Abia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Akwa Ibom\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Akwa Ibom\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akwa Ibom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Anambra\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Anambra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Anambra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Bayelsa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bayelsa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bayelsa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Benue\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Benue\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Benue\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Cross River\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cross River\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cross River\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Delta\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ebonyi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ebonyi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ebonyi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Edo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ekiti\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ekiti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ekiti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Enugu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enugu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enugu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Federal Capital Territory\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Federal Capital Territory\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Federal Capital Territory\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Imo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Imo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Imo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kaduna\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kaduna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kaduna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kebbi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kebbi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kebbi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kogi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kogi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kogi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Kwara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kwara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kwara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Lagos\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Nasarawa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nasarawa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nasarawa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Niger\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Niger\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niger\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ogun\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ogun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ogun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Ondo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ondo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ondo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Osun\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Osun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Oyo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oyo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oyo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Plateau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plateau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plateau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Rivers\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rivers\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rivers\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Sokoto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sokoto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sokoto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Nigeria\",\r\n \"state\": \"Zamfara\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zamfara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zamfara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Aveiro\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aveiro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aveiro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Beja\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Beja\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Beja\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Braga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Braga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Braganca\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Braganca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braganca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Castelo Branco\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Castelo Branco\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Castelo Branco\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Coimbra\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coimbra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coimbra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Evora\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Evora\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Evora\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Faro\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Faro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Faro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Guarda\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Guarda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guarda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Leiria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leiria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leiria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Lisboa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisboa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisboa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Portalegre\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portalegre\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portalegre\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Porto\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Porto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Porto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Santarem\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santarem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Santarem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Setubal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Setubal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Setubal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Viana do Castelo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Viana do Castelo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viana do Castelo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Vila Real\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vila Real\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vila Real\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Viseu\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Viseu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viseu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Singapore\",\r\n \"state\": \"Singapore\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eastern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Free State\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Free State\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Free State\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Gauteng\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gauteng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gauteng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"KwaZulu-Natal\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"KwaZulu-Natal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/KwaZulu-Natal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Limpopo\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Limpopo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limpopo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Mpumalanga\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mpumalanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mpumalanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"North West\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North West\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North West\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Northern Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northern Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"South Africa\",\r\n \"state\": \"Western Cape\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Western Cape\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Western Cape\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Aargau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aargau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aargau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Appenzell Ausserrhoden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Appenzell Ausserrhoden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Appenzell Ausserrhoden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Appenzell Innerrhoden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Appenzell Innerrhoden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Appenzell Innerrhoden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Basel-Landschaft\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Basel-Landschaft\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basel-Landschaft\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Basel-Stadt\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Basel-Stadt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basel-Stadt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Bern\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Fribourg\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fribourg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fribourg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Geneve\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneve\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Geneve\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Glarus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glarus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glarus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Graubunden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Graubunden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Graubunden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Jura\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jura\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jura\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Luzern\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luzern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luzern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Neuchatel\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neuchatel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neuchatel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Nidwalden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nidwalden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nidwalden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Obwalden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Obwalden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Obwalden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Sankt Gallen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sankt Gallen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sankt Gallen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Schaffhausen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schaffhausen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schaffhausen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Schwyz\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Schwyz\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schwyz\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Solothurn\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solothurn\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solothurn\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Thurgau\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurgau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurgau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Ticino\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ticino\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ticino\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Uri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Uri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Valais\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Valais\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valais\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Vaud\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vaud\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vaud\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Zug\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zug\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zug\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Zurich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Aberdeen City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Aberdeen City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aberdeen City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Angus\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Angus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Angus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Antrim and Newtownabbey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antrim and Newtownabbey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ards and North Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ards and North Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ards and North Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Argyll and Bute\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Argyll and Bute\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Argyll and Bute\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Armagh, Banbridge and Craigavon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Armagh, Banbridge and Craigavon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barking and Dagenham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barking and Dagenham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barking and Dagenham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnet\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Barnsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barnsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barnsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bath and North East Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bath and North East Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bedford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bedford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bedford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Belfast\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Belfast\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belfast\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bexley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bexley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bexley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Birmingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Birmingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Birmingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackburn with Darwen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackburn with Darwen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blackpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blackpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blackpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Blaenau Gwent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blaenau Gwent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bolton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bolton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bournemouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bournemouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bournemouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bracknell Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bracknell Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bracknell Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bradford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bradford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bradford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bridgend\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bridgend\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bridgend\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brighton and Hove\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brighton and Hove\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bristol, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bristol, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bristol, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bromley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bromley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bromley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Buckinghamshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buckinghamshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buckinghamshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Bury\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bury\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bury\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Caerphilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Caerphilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caerphilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Calderdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Calderdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calderdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cambridgeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cambridgeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cambridgeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Camden\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Camden\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camden\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cardiff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cardiff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cardiff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Carmarthenshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Carmarthenshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carmarthenshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Causeway Coast and Glens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeway Coast and Glens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Central Bedfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Central Bedfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ceredigion\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ceredigion\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceredigion\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire East\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire East\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire East\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cheshire West and Chester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cheshire West and Chester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cheshire West and Chester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Clackmannanshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Clackmannanshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clackmannanshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Conwy\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Conwy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Conwy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cornwall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cornwall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cornwall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Coventry\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Coventry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coventry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Croydon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Croydon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Croydon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Cumbria\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cumbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cumbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Darlington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Darlington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darlington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Denbighshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denbighshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denbighshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derby\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derby\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derby\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derbyshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derbyshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derbyshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Derry and Strabane\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Derry and Strabane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Derry and Strabane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Devon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Devon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Devon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Doncaster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Doncaster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Doncaster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dorset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dorset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dorset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dudley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dudley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dudley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dumfries and Galloway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dumfries and Galloway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Dundee City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dundee City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dundee City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Durham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Durham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Ealing\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ealing\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ealing\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Riding of Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Riding of Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"East Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"East Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/East Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Edinburgh, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edinburgh, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Eilean Siar\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Eilean Siar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eilean Siar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Enfield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Enfield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Enfield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Essex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Essex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Essex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Falkirk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Falkirk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Falkirk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fermanagh and Omagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fermanagh and Omagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Fife\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fife\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fife\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Flintshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Flintshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Flintshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gateshead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gateshead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gateshead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Glasgow City\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Glasgow City\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Glasgow City\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Greenwich\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Greenwich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Greenwich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Gwynedd\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Gwynedd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gwynedd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hackney\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hackney\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hackney\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Halton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Halton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Halton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hammersmith and Fulham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hammersmith and Fulham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hammersmith and Fulham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Haringey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Haringey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haringey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Harrow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Harrow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harrow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hartlepool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hartlepool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hartlepool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Havering\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Havering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Havering\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Herefordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Herefordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herefordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hertfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hertfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hertfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Highland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Highland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Highland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hillingdon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hillingdon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hillingdon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Hounslow\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hounslow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hounslow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Inverclyde\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Inverclyde\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inverclyde\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Anglesey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Anglesey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isle of Wight\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isle of Wight\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isle of Wight\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Isles of Scilly\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Isles of Scilly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isles of Scilly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Islington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Islington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kensington and Chelsea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kensington and Chelsea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kensington and Chelsea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Hull, City of\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Hull, City of\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kingston upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kingston upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kingston upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Kirklees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kirklees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Knowsley\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Knowsley\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Knowsley\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lambeth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lambeth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lambeth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lancashire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lancashire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lancashire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leeds\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leeds\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leeds\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Leicester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Leicester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leicester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lewisham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lewisham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lewisham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisburn and Castlereagh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lisburn and Castlereagh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Liverpool\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Liverpool\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liverpool\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"London\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/London\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Luton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Luton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Manchester\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Medway\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Medway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merthyr Tydfil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merthyr Tydfil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Merton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Merton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid Ulster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid Ulster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid Ulster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mid and East Antrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mid and East Antrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Midlothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Midlothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Midlothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Milton Keynes\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milton Keynes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Milton Keynes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Monmouthshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Monmouthshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monmouthshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Moray\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Neath Port Talbot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neath Port Talbot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newcastle upon Tyne\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newcastle upon Tyne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newcastle upon Tyne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Newry, Mourne and Down\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Newry, Mourne and Down\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Newry, Mourne and Down\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Norfolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Norfolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norfolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North East Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North East Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North East Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Lincolnshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Lincolnshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Lincolnshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"North Yorkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Yorkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Yorkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northamptonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northamptonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northamptonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Northumberland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Northumberland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northumberland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Nottingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nottingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nottingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oldham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oldham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oldham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Orkney Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Orkney Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orkney Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Oxfordshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oxfordshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oxfordshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Pembrokeshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pembrokeshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pembrokeshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Perth and Kinross\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth and Kinross\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Perth and Kinross\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Peterborough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Peterborough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peterborough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Plymouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Plymouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plymouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Poole\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Poole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Portsmouth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portsmouth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portsmouth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Powys\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Powys\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Powys\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Reading\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reading\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Reading\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redbridge\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redbridge\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redbridge\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Redcar and Cleveland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Redcar and Cleveland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Renfrewshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Renfrewshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Renfrewshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhondda Cynon Taff\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhondda Cynon Taff\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Richmond upon Thames\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Richmond upon Thames\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Richmond upon Thames\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rochdale\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rochdale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rochdale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rotherham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rotherham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rotherham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Rutland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rutland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rutland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Salford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Salford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sandwell\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sandwell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sandwell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Scottish Borders, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Scottish Borders, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Scottish Borders, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sefton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sefton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sefton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sheffield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sheffield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sheffield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shetland Islands\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shetland Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shetland Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Shropshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Shropshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shropshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Slough\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Slough\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slough\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Solihull\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Solihull\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Solihull\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Somerset\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Somerset\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somerset\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Ayrshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Ayrshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Ayrshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Gloucestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Gloucestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Gloucestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Lanarkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Lanarkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Lanarkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"South Tyneside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Tyneside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Tyneside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southend-on-Sea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southend-on-Sea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southend-on-Sea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Southwark\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Southwark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southwark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"St. Helens\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"St. Helens\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/St. Helens\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stirling\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stirling\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stirling\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockport\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stockton-on-Tees\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockton-on-Tees\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stockton-on-Tees\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stoke-on-Trent\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stoke-on-Trent\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Suffolk\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Suffolk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suffolk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sunderland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sunderland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sunderland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Sutton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sutton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sutton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swansea\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swansea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swansea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Swindon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Swindon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swindon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tameside\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tameside\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tameside\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Telford and Wrekin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Telford and Wrekin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telford and Wrekin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Thurrock\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Thurrock\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thurrock\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torbay\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torbay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torbay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Torfaen\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Torfaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Torfaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Tower Hamlets\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tower Hamlets\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tower Hamlets\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Trafford\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Trafford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trafford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Vale of Glamorgan, The\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vale of Glamorgan, The\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vale of Glamorgan, The\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wakefield\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wakefield\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wakefield\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Walsall\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Walsall\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Walsall\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Waltham Forest\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Waltham Forest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waltham Forest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wandsworth\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wandsworth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wandsworth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warrington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warrington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warrington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Warwickshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warwickshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warwickshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Berkshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Berkshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Berkshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Dunbartonshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Dunbartonshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Lothian\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Lothian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Lothian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"West Sussex\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Sussex\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Sussex\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Westminster\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Westminster\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westminster\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wiltshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wiltshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wiltshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Windsor and Maidenhead\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Windsor and Maidenhead\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wirral\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wirral\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wirral\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wokingham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wokingham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wokingham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wolverhampton\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wolverhampton\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wolverhampton\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Worcestershire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Worcestershire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Worcestershire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"Wrexham\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wrexham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wrexham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United Kingdom\",\r\n \"state\": \"York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Alabama\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Alabama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alabama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arizona\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arizona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arizona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Arkansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Arkansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arkansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"California\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Colorado\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Colorado\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colorado\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Connecticut\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Connecticut\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Connecticut\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delaware\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delaware\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"District of Columbia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"District of Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/District of Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Florida\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Florida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Florida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Georgia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Georgia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Georgia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Hawaii\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hawaii\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hawaii\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Idaho\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Idaho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idaho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Illinois\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Illinois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Illinois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Indiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Indiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Indiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Iowa\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Iowa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iowa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kansas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kansas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kansas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Kentucky\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kentucky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentucky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Louisiana\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Louisiana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louisiana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maine\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Maryland\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Maryland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maryland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Massachusetts\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Massachusetts\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Massachusetts\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Michigan\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Michigan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michigan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Minnesota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minnesota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minnesota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Mississippi\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mississippi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mississippi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Missouri\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Missouri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Missouri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nebraska\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nebraska\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nebraska\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Nevada\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nevada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nevada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Hampshire\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Hampshire\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Hampshire\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Jersey\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Jersey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Jersey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New Mexico\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New York\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"North Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"North Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Ohio\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ohio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oklahoma\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oklahoma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oklahoma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Oregon\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oregon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oregon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Pennsylvania\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Pennsylvania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pennsylvania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Rhode Island\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rhode Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rhode Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Carolina\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Carolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Carolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"South Dakota\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"South Dakota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/South Dakota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Tennessee\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tennessee\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tennessee\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Texas\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Texas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Texas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Utah\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Utah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Utah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Vermont\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vermont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vermont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Washington\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Washington\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Washington\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"West Virginia\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"West Virginia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/West Virginia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wisconsin\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wisconsin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wisconsin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Wyoming\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Wyoming\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wyoming\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/CheckServiceProviderAvailability?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9DaGVja1NlcnZpY2VQcm92aWRlckF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/CheckServiceProviderAvailability?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9DaGVja1NlcnZpY2VQcm92aWRlckF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\"\r\n}", + "RequestBody": "{\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d2c277f6-8069-4467-8e46-57368b5b5968" + "d080b185-1311-439d-9353-85b18177ce7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "106" + "92" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-request-id": [ - "c355e178-8a1d-4407-b775-a9be317adf64" + "2a2c611a-9987-4f0c-afbd-4638ed1b0d09" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "f06f563c-085e-4f0c-abc8-2067ae78f059" + "4188b14d-a690-48e9-9a92-a285dccc8283" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213500Z:f06f563c-085e-4f0c-abc8-2067ae78f059" + "NORTHEUROPE:20210409T080554Z:4188b14d-a690-48e9-9a92-a285dccc8283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:35:00 GMT" + "Fri, 09 Apr 2021 08:05:53 GMT" ], "Content-Length": [ "11" @@ -127,28 +127,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9499?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlOTQ5OT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService962?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlOTYyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\"\r\n },\r\n \"location\": \"Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\"\r\n },\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b4abd1d6-03b3-4b9f-8879-215e18e379a6" + "d080b185-1311-439d-9353-85b18177ce7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "163" + "149" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "a6f98882-469a-4a6e-b059-7f9de1e46ab6" + "7feeb3c0-0bf3-4f58-97e2-4aeec5b1fc11" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "9bb93fe7-759e-4f99-ae90-473c48f91f11" + "f5a2a691-6f40-4d26-8f54-835557757d32" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213504Z:9bb93fe7-759e-4f99-ae90-473c48f91f11" + "NORTHEUROPE:20210409T080557Z:f5a2a691-6f40-4d26-8f54-835557757d32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:35:04 GMT" + "Fri, 09 Apr 2021 08:05:57 GMT" ], "Content-Length": [ - "491" + "424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"7b7f758c-85c0-4ff5-82c0-9b48ced0c6e5\",\r\n \"name\": \"myPeeringService9499\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9499\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService962\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService962\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9499?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlOTQ5OT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService962?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0J1aWxkaW5nNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlOTYyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "492d555f-35be-40b0-9184-7ea5a16ae260" + "d080b185-1311-439d-9353-85b18177ce7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -219,16 +219,16 @@ "no-cache" ], "x-ms-request-id": [ - "fb449a97-8fa4-44cd-9827-446f02928e1a" + "b942caaf-a88b-4ac0-82d3-27d1b27e11d6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "553a89ec-2553-44cf-8430-915eaffa51fa" + "b211dba3-2e73-4f58-9393-d82029afa63b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213505Z:553a89ec-2553-44cf-8430-915eaffa51fa" + "NORTHEUROPE:20210409T080558Z:b211dba3-2e73-4f58-9393-d82029afa63b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,10 +237,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:35:04 GMT" + "Fri, 09 Apr 2021 08:05:57 GMT" ], "Content-Length": [ - "491" + "424" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,13 +249,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Verizon Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"eTag\": \"7b7f758c-85c0-4ff5-82c0-9b48ced0c6e5\",\r\n \"name\": \"myPeeringService9499\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService9499\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Ile-de-France\",\r\n \"peeringServiceProvider\": \"InterCloud\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"name\": \"myPeeringService962\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peeringServices/myPeeringService962\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-NewPeeringService": [ - "myPeeringService9499" + "myPeeringService962" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredAsn/TestCreateRegisteredAsn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredAsn/TestCreateRegisteredAsn.json index 16efb515faa3..9b0e9ebe5dff 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredAsn/TestCreateRegisteredAsn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredAsn/TestCreateRegisteredAsn.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cec99c9-6ebb-44ab-9943-e54b681cc607" + "d609eeb0-3421-4e60-a7d0-2a059bdfdaec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "499abbf8-2e95-4eb6-803a-10f01341ba01" + "8322ac7d-c561-4c35-aedc-3325ee8e15f9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "a3930995-4195-488a-a574-06b3752d7950" + "a848fd55-7620-4ffa-b2fc-7450f043893a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T220552Z:a3930995-4195-488a-a574-06b3752d7950" + "NORTHEUROPE:20210409T081019Z:a848fd55-7620-4ffa-b2fc-7450f043893a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:05:51 GMT" + "Fri, 09 Apr 2021 08:10:19 GMT" ], "Content-Length": [ - "99132" + "402977" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,32 +57,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"eTag\": \"1a7307ac-8785-4afa-b15e-3053eba6430a\",\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"0dbcf12a-a30d-4531-af2b-b560d88df0db\",\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"4ec2bbb9-617f-45ea-9ea8-fc1fe9845807\",\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"99b647e7-3be4-4186-8801-bc6c804863c5\",\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"273ec016-cf39-4313-ba2a-0e51ee87902b\",\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"eTag\": \"d11ef80b-25cb-4ea0-81b5-5f90646e9774\",\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"eTag\": \"d726b703-5b65-4789-8ddb-3821435e2da0\",\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"eTag\": \"b515a998-0004-42fd-a328-41426bd23b60\",\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"eTag\": \"2eeb972b-9c7e-4a63-b3e6-33da7d9d4c9e\",\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"2dee5bea-fd7c-4236-8976-5843e679b1d6\",\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"e1043c0b-a467-44b4-bec9-9261c6d62eb8\",\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b42e77ee-15ca-461c-85ca-5615a81302f4\",\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"1178ef0f-3372-42f5-891d-b811a356f5dc\",\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b097a98b-47d5-42eb-8159-026f5f90b363\",\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"eTag\": \"0b4f1b38-48c2-4553-a6cc-6f40d339dede\",\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"eTag\": \"3519eb65-e58e-4288-8af1-46b77bcc4b6b\",\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"c98788d8-51bf-4f77-b014-ae544238e6c3\",\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"3f14d313-16e7-495e-a8dd-56fbf26098a2\",\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"eTag\": \"9157828a-6376-423f-a884-1ce5b8ccf3e4\",\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b9bc5839-449f-476c-a2bd-01917acb1f65\",\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1354,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"eb4a5668-bd19-4a93-84b0-77284be0d425\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"6af5f30a-9282-489b-96be-cf207d4f0615\",\r\n \"name\": \"test1\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/test1\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"d7bfa4d1-72ec-4ac3-8fc2-651a713d95e5\",\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 100004,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d592b65d-45eb-4494-954e-9abbf2cf2081\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"TestProductionReadyFacilityPeering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.130\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"80051dee-4f1c-43b6-97dc-2ac36eb66bdd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f411576e-9678-4f8c-9bb9-182e438e894d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.180\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Active\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4d57976-4803-43bb-8741-47c7d122f531\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Active\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"362a98a2-ea1a-4cfa-8e0a-ff8fd6caa5b9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global8141\"\r\n }\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Bucharest_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Bucharest_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.218/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b10/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.219\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b12\",\r\n \"peerSessionIPv4Address\": \"104.44.197.218\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b11\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.216/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b0c/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.217\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0e\",\r\n \"peerSessionIPv4Address\": \"104.44.197.216\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b0d\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.214/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b08/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.215\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0a\",\r\n \"peerSessionIPv4Address\": \"104.44.197.214\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b09\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.212/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b04/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.213\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b06\",\r\n \"peerSessionIPv4Address\": \"104.44.197.212\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b05\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"423bc362-bd7c-41d2-b402-5244ff93fa2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a352069e-0f89-4c4c-892c-04968a125395\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"4d89564e-855e-437f-aa06-e12a85eb89ac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c06111ff-0542-441e-922f-c8af28d2190c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"56e866cb-484e-44b4-93b5-d56c5d497b54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"dc8f1805-bf5b-4f22-8f55-470fba67ea0a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a352069e-0f89-4c4c-892c-04968a125395\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a352069e-0f89-4c4c-892c-04968a125395\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c06111ff-0542-441e-922f-c8af28d2190c\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_c06111ff-0542-441e-922f-c8af28d2190c\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS9116_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS9116_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"241.184.55.0/31\",\r\n \"sessionPrefixV6\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"241.184.55.1\",\r\n \"microsoftSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac01\",\r\n \"peerSessionIPv4Address\": \"241.184.55.0\",\r\n \"peerSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10794,\r\n \"maxPrefixesAdvertisedV6\": 1430,\r\n \"md5AuthenticationKey\": \"68918b1b5b130694aec6dcb3432f7b3a\"\r\n },\r\n \"connectionIdentifier\": \"7f446685-9191-41b2-be9c-7f56c699efe2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55253-Global5765\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_55253\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9950\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9950\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.196.88.0/31\",\r\n \"sessionPrefixV6\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"29.196.88.1\",\r\n \"microsoftSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8601\",\r\n \"peerSessionIPv4Address\": \"29.196.88.0\",\r\n \"peerSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"660a83b4-2f56-430e-b885-c3464acfc4b9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"6.7.47.0/31\",\r\n \"sessionPrefixV6\": \"607:2f23:e383:ba42:4b63:950:4d25:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"6.7.47.1\",\r\n \"microsoftSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e501\",\r\n \"peerSessionIPv4Address\": \"6.7.47.0\",\r\n \"peerSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"e86e3109-b558-43cb-ab82-1e27dcce4459\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/50896-Global8957\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_50896\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1538\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.54.20.0/31\",\r\n \"sessionPrefixV6\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"170.54.20.1\",\r\n \"microsoftSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6901\",\r\n \"peerSessionIPv4Address\": \"170.54.20.0\",\r\n \"peerSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"8b253073-c71b-480d-bd96-e919f594fc04\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.136.117.0/31\",\r\n \"sessionPrefixV6\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"203.136.117.1\",\r\n \"microsoftSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a201\",\r\n \"peerSessionIPv4Address\": \"203.136.117.0\",\r\n \"peerSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"80472de1-e0af-479e-855b-3d800af32726\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2489-Global3700\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2489\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1959\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1959\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.210.52.0/31\",\r\n \"sessionPrefixV6\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"78.210.52.1\",\r\n \"microsoftSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6901\",\r\n \"peerSessionIPv4Address\": \"78.210.52.0\",\r\n \"peerSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"78b1382e-c5be-4f6c-8dc3-a6d920a5dc22\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"60.241.107.0/31\",\r\n \"sessionPrefixV6\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"60.241.107.1\",\r\n \"microsoftSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9901\",\r\n \"peerSessionIPv4Address\": \"60.241.107.0\",\r\n \"peerSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"eab77b83-f1f0-4348-914c-3c2287891cf5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38128-Global3805\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38128\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8137\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8137\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"a5ff08de-7ec0-4eb7-afd7-ca2f7fe95194\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"d0e178ac-f585-4bf3-bffb-4ec351be92d1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22815-Global919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22815\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8728\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.83.157.0/31\",\r\n \"sessionPrefixV6\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"144.83.157.1\",\r\n \"microsoftSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a201\",\r\n \"peerSessionIPv4Address\": \"144.83.157.0\",\r\n \"peerSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3670,\r\n \"maxPrefixesAdvertisedV6\": 633,\r\n \"md5AuthenticationKey\": \"f79cc7d1fc7a955029fa7d655672fec0\"\r\n },\r\n \"connectionIdentifier\": \"c23d0784-d60f-45e5-822b-9a4712926e7c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11364-Global7480\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_11364\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2029\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2029\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"45.127.211.0/31\",\r\n \"sessionPrefixV6\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"45.127.211.1\",\r\n \"microsoftSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3001\",\r\n \"peerSessionIPv4Address\": \"45.127.211.0\",\r\n \"peerSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3752,\r\n \"maxPrefixesAdvertisedV6\": 1476,\r\n \"md5AuthenticationKey\": \"1d7912808f2b7701e878d5db7248b75c\"\r\n },\r\n \"connectionIdentifier\": \"0d816d82-f5a3-4240-961b-230cf135d4ab\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11737-Global8819\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_11737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2500\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2500\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1408,\r\n \"maxPrefixesAdvertisedV6\": 832,\r\n \"md5AuthenticationKey\": \"ce6640d9404bc472ff6538bf66bc4888\"\r\n },\r\n \"connectionIdentifier\": \"00812dcc-15a1-46f0-b4fd-1ee466ccc231\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64098-Global3338\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_64098\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2881\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2881\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"118.39.68.0/31\",\r\n \"sessionPrefixV6\": \"7627:4409:7884:e034:e6aa:335b:9335:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"118.39.68.1\",\r\n \"microsoftSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9901\",\r\n \"peerSessionIPv4Address\": \"118.39.68.0\",\r\n \"peerSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18413,\r\n \"maxPrefixesAdvertisedV6\": 554,\r\n \"md5AuthenticationKey\": \"28c359f10c907ad3adc52539a996703a\"\r\n },\r\n \"connectionIdentifier\": \"75bc6a0d-2d96-45fe-9628-48b4a37dd80c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15592-Global9066\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_15592\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection468\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection468\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.123.118.0/31\",\r\n \"sessionPrefixV6\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"29.123.118.1\",\r\n \"microsoftSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4401\",\r\n \"peerSessionIPv4Address\": \"29.123.118.0\",\r\n \"peerSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19531,\r\n \"maxPrefixesAdvertisedV6\": 1180,\r\n \"md5AuthenticationKey\": \"f1a078d353e513b9a4eba41e34924dbf\"\r\n },\r\n \"connectionIdentifier\": \"13c6fcb9-4b4a-42c7-8b36-a2745ab460e6\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53691-Global3806\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_53691\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6020\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6020\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db47cdc1-7407-42c5-a134-3674452d656e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce7825b9-289e-4bc8-b1b5-99de54e8e582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4351bf08-b728-4c55-8847-00c4391d1b23\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a260272d-520f-4a4a-a8a6-0fff0f1e85d5\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global6072\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.157.57.0/31\",\r\n \"sessionPrefixV6\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"149.157.57.1\",\r\n \"microsoftSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee01\",\r\n \"peerSessionIPv4Address\": \"149.157.57.0\",\r\n \"peerSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"d588ae8f-ddc1-4d41-afe7-bdc71385bb17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"113.147.198.0/31\",\r\n \"sessionPrefixV6\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"113.147.198.1\",\r\n \"microsoftSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b01\",\r\n \"peerSessionIPv4Address\": \"113.147.198.0\",\r\n \"peerSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"8ec4cbaa-d47d-4ec4-8c4c-b4ccdd58d3ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47528-Global3377\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_47528\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection865\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection865\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"569ae825-ea67-452e-a49d-32514bb56251\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"7c96d251-9cfd-427e-90ef-f2820d85f6a3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"0ef62088-01a0-4565-9bc1-387553444c7b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"f806e838-2d22-4eb8-a866-85d79029cc5d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"487c0fc7-721a-44b1-869d-b9f23ee8ccb4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"fd74ac6a-ec60-4fc1-9385-b9fa721d04f3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"1984ea5e-8c72-43bf-8d4c-df005dfde027\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"065696ba-18c9-4485-926c-d4a5a120d914\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33348-Global4010\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33348\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS5732\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS5732\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.201.146.0/31\",\r\n \"sessionPrefixV6\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"175.201.146.1\",\r\n \"microsoftSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f701\",\r\n \"peerSessionIPv4Address\": \"175.201.146.0\",\r\n \"peerSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7884,\r\n \"maxPrefixesAdvertisedV6\": 1723,\r\n \"md5AuthenticationKey\": \"2fb12e8bdbb38a0bf40073a5127448be\"\r\n },\r\n \"connectionIdentifier\": \"a8f21a11-4f00-4662-b717-4b5e9d9c2827\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22267-Global9836\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22267\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4210\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4210\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16431,\r\n \"maxPrefixesAdvertisedV6\": 1391,\r\n \"md5AuthenticationKey\": \"4e29939390334ed41d3627ec11b9a89b\"\r\n },\r\n \"connectionIdentifier\": \"89e132fc-770d-47bd-8717-6b60e962a382\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34893-Global3365\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34893\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3927\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3927\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.193.205.0/31\",\r\n \"sessionPrefixV6\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"147.193.205.1\",\r\n \"microsoftSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a01\",\r\n \"peerSessionIPv4Address\": \"147.193.205.0\",\r\n \"peerSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1095,\r\n \"maxPrefixesAdvertisedV6\": 180,\r\n \"md5AuthenticationKey\": \"982fcaab1e2f365731f6ebefaf7cab66\"\r\n },\r\n \"connectionIdentifier\": \"5c050611-8122-4e93-9044-32b95dc6b006\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16734-Global9075\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_16734\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7969\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"6dc4a1ed-8ac6-49ba-a113-f8a6e49972a0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"386abe6f-68c7-4e56-bcdc-ba0ccb2aa15f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60646-Global7216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60646\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8373\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8373\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6825,\r\n \"maxPrefixesAdvertisedV6\": 411,\r\n \"md5AuthenticationKey\": \"96e1229f1a5ac0c2e4e8d0f08aca2d9e\"\r\n },\r\n \"connectionIdentifier\": \"0a833152-ecb1-40f9-a222-109734ef55a8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4279-Global6784\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_4279\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5996\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5996\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9533,\r\n \"maxPrefixesAdvertisedV6\": 1070,\r\n \"md5AuthenticationKey\": \"5c6596342ec124b2af63e7a0587fd778\"\r\n },\r\n \"connectionIdentifier\": \"a15d518d-4502-4c23-84d2-22f23db31de1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60935-Global5716\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60935\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection771\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection771\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16829,\r\n \"maxPrefixesAdvertisedV6\": 1913,\r\n \"md5AuthenticationKey\": \"e6978716baef8643586d9c5550bb145f\"\r\n },\r\n \"connectionIdentifier\": \"fc7815dd-9810-496b-b22a-3932d60f3ea3\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3398-Global3790\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3398\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5312\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5312\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"1.188.147.0/31\",\r\n \"sessionPrefixV6\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"1.188.147.1\",\r\n \"microsoftSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9801\",\r\n \"peerSessionIPv4Address\": \"1.188.147.0\",\r\n \"peerSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10933,\r\n \"maxPrefixesAdvertisedV6\": 1416,\r\n \"md5AuthenticationKey\": \"f5c4fdbbf67bf39ea7f672819443a8bc\"\r\n },\r\n \"connectionIdentifier\": \"5bcd8d64-0b61-4e5a-8263-8d4ea21a9110\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32686-Global3930\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32686\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8205\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8205\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"bd3cc92e-f1d3-4c92-bb09-010671084cd8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.160.231.0/31\",\r\n \"sessionPrefixV6\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"157.160.231.1\",\r\n \"microsoftSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e501\",\r\n \"peerSessionIPv4Address\": \"157.160.231.0\",\r\n \"peerSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"7d1c5297-f009-408e-9b29-c57421c2f8c1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/17252-Global7140\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_17252\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2040\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2040\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"5083537f-b6a8-4e4e-be82-ba56e525e655\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"4900f076-6bbb-4973-abc2-49171d221c9b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"30295231-964c-4aa0-94eb-21b672c07c19\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"efec4548-27f5-43e3-b379-710c6687cd89\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"c6e4ef27-303f-4328-9fe9-744ad7285984\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"adbc9d4d-34a5-4334-9e86-a8ee405ada48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"fe8b330b-647f-43cf-8ed7-1767e46daf95\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"f5fdd891-5b61-4f8f-ad88-2192c0fae0c7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19385-Global2700\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19385\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS9774\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS9774\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"767a25fb-482a-4de8-90c7-44f50e6a0590\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ccc44517-8c4a-4359-a7f3-401fa4d5d6b8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"9aaa78da-ef35-4d0e-bbb0-7da46aaf79ea\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"c50c466a-c260-4cab-b46a-709e840f73c5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"43c49727-d3fe-4d00-872d-7ad1fabc927b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ed89d4a6-f609-4838-b7b1-bedace0e58e8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"04eb48ba-3156-4de3-9e59-56f58b94ef65\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"4b30fc13-0557-45ed-af7b-428ef64e9a1b\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38121-Global6800\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38121\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b9c2be73-348e-4bc6-adae-1f429fe50fcc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"aec70c2a-1911-47a6-9363-1f8cae7c8db1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b153ba82-7ef1-470b-a57d-66a0b7e6f09d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3cb306cc-afbf-4ac9-9ce7-192499ee4003\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/293-Global8506\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS293_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS293_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.20.46.0/31\",\r\n \"sessionPrefixV6\": \"b414:2e70:710b:b870:e704:7013:1c33:4300/127\",\r\n \"microsoftSessionIPv4Address\": \"180.20.46.1\",\r\n \"microsoftSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4301\",\r\n \"peerSessionIPv4Address\": \"180.20.46.0\",\r\n \"peerSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7183,\r\n \"maxPrefixesAdvertisedV6\": 1576,\r\n \"md5AuthenticationKey\": \"7a24b847242eb9837a215004eabd4fe2\"\r\n },\r\n \"connectionIdentifier\": \"a7fae4b1-3ce2-441f-94e4-c2f53e71d5f8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5381-Global1967\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_5381\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection53\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection53\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.83.122.0/31\",\r\n \"sessionPrefixV6\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"19.83.122.1\",\r\n \"microsoftSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2701\",\r\n \"peerSessionIPv4Address\": \"19.83.122.0\",\r\n \"peerSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"7ba251d8-def4-4f26-b1b3-ff2961ce4c55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"201.99.39.0/31\",\r\n \"sessionPrefixV6\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00/127\",\r\n \"microsoftSessionIPv4Address\": \"201.99.39.1\",\r\n \"microsoftSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c01\",\r\n \"peerSessionIPv4Address\": \"201.99.39.0\",\r\n \"peerSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"116d22c4-06bf-4f60-8bfc-4566b2d1082a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62697-Global1922\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62697\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9700\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9700\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"30330c9c-8530-4382-aa73-bc8ee4096425\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"fcfcc7a8-5400-444e-90fe-a0dbdb79db73\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"86daab31-826e-4d8f-9c16-50be3c1cc249\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"907f7af9-eaab-4cdc-857d-cb75e9d4ca08\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"6d4d0342-d182-4dde-8d02-15965f98fd3b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"33897291-64e2-47ef-947e-416ec23397f2\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"58ddaf98-0ad8-4130-b876-533f89d4094d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"5ab62206-3e04-4e63-bb97-1945781c830a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46447-Global978\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_46447\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6348\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6348\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"72.62.182.0/31\",\r\n \"sessionPrefixV6\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"72.62.182.1\",\r\n \"microsoftSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db01\",\r\n \"peerSessionIPv4Address\": \"72.62.182.0\",\r\n \"peerSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8532,\r\n \"maxPrefixesAdvertisedV6\": 1402,\r\n \"md5AuthenticationKey\": \"7fadf7587435a401fac69d14b46fbafc\"\r\n },\r\n \"connectionIdentifier\": \"69872a12-8863-442d-a7d1-03cddc56127a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46638-Global2402\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_46638\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection327\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection327\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"26.86.40.0/31\",\r\n \"sessionPrefixV6\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"26.86.40.1\",\r\n \"microsoftSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d01\",\r\n \"peerSessionIPv4Address\": \"26.86.40.0\",\r\n \"peerSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4335,\r\n \"maxPrefixesAdvertisedV6\": 623,\r\n \"md5AuthenticationKey\": \"c72efb13cbf4fb236889a3dd66524266\"\r\n },\r\n \"connectionIdentifier\": \"564b7709-f845-4200-a0f0-4e099965ba52\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42259-Global4439\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_42259\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"7a4e14cb-0f30-4c2f-9d53-6c2cd9fa87a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.144.93.0/31\",\r\n \"sessionPrefixV6\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"101.144.93.1\",\r\n \"microsoftSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a01\",\r\n \"peerSessionIPv4Address\": \"101.144.93.0\",\r\n \"peerSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"1f7f6dea-1cf8-4d73-8e77-3185fbebba82\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41272-Global7358\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_41272\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1911\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1911\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.38.103.0/31\",\r\n \"sessionPrefixV6\": \"f426:6750:a75a:aa50:7935:7317:680b:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"244.38.103.1\",\r\n \"microsoftSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1401\",\r\n \"peerSessionIPv4Address\": \"244.38.103.0\",\r\n \"peerSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1228,\r\n \"maxPrefixesAdvertisedV6\": 1801,\r\n \"md5AuthenticationKey\": \"98d7a206c67f03e59871931988c72eb2\"\r\n },\r\n \"connectionIdentifier\": \"9104cb9b-68ce-4895-8824-6c34a686e6e0\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62737-Global7374\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8360\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8360\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"14.9.222.0/31\",\r\n \"sessionPrefixV6\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"14.9.222.1\",\r\n \"microsoftSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db01\",\r\n \"peerSessionIPv4Address\": \"14.9.222.0\",\r\n \"peerSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"ec084ea0-757b-41d0-9825-eaf547511859\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"978b0b63-f979-4c4b-a4a7-814368d4f93a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/988-Global3898\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_988\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5745\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5745\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17707,\r\n \"maxPrefixesAdvertisedV6\": 480,\r\n \"md5AuthenticationKey\": \"71bbf7232def60205a04721e0f722154\"\r\n },\r\n \"connectionIdentifier\": \"fb9d1483-c466-4e22-a6a1-13c02a1df6ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27822-Global9380\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27822\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9957\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9957\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"132.6.82.0/31\",\r\n \"sessionPrefixV6\": \"8406:526b:1259:855e:deef:490c:23fa:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"132.6.82.1\",\r\n \"microsoftSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6001\",\r\n \"peerSessionIPv4Address\": \"132.6.82.0\",\r\n \"peerSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"ec643b08-9c69-48a8-a2d9-fe8f47685c54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.4.164.0/31\",\r\n \"sessionPrefixV6\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"124.4.164.1\",\r\n \"microsoftSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6901\",\r\n \"peerSessionIPv4Address\": \"124.4.164.0\",\r\n \"peerSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"daed42d1-0547-48ad-a3de-7127f378c862\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4457-Global4768\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4457\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1769\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1769\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"126.41.242.0/31\",\r\n \"sessionPrefixV6\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"126.41.242.1\",\r\n \"microsoftSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f01\",\r\n \"peerSessionIPv4Address\": \"126.41.242.0\",\r\n \"peerSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5168,\r\n \"maxPrefixesAdvertisedV6\": 1008,\r\n \"md5AuthenticationKey\": \"6c26585ffae85cbfdf6aa0daf4320ec9\"\r\n },\r\n \"connectionIdentifier\": \"e66f9263-c367-4da4-ac00-db4cd588e32b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13386-Global6814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_13386\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection81\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection81\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"183.130.94.0/31\",\r\n \"sessionPrefixV6\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"183.130.94.1\",\r\n \"microsoftSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac01\",\r\n \"peerSessionIPv4Address\": \"183.130.94.0\",\r\n \"peerSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1982,\r\n \"maxPrefixesAdvertisedV6\": 498,\r\n \"md5AuthenticationKey\": \"143c0ba4b802d74cc4e3581bb13384aa\"\r\n },\r\n \"connectionIdentifier\": \"7af5b5eb-e09a-4711-8de6-2710741bb1ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27207-Global7473\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27207\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection3103\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection3103\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"26bbec7c-1e28-4ddd-b58d-7bd8f8be5ade\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"6dcb956c-52c6-43db-b127-d31486831e0d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10813-Global3979\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_10813\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7223\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7223\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.231.248.0/31\",\r\n \"sessionPrefixV6\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"24.231.248.1\",\r\n \"microsoftSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b501\",\r\n \"peerSessionIPv4Address\": \"24.231.248.0\",\r\n \"peerSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 715,\r\n \"maxPrefixesAdvertisedV6\": 674,\r\n \"md5AuthenticationKey\": \"4680c8ad29418fedaa8ea1c1eed3f8d3\"\r\n },\r\n \"connectionIdentifier\": \"f4fe9ad5-c7f7-4fce-9b06-c203cc07f661\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4964-Global4917\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4964\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection9603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.93.16.0/31\",\r\n \"sessionPrefixV6\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500/127\",\r\n \"microsoftSessionIPv4Address\": \"180.93.16.1\",\r\n \"microsoftSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8501\",\r\n \"peerSessionIPv4Address\": \"180.93.16.0\",\r\n \"peerSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"13dd1202-c083-42ff-bdb7-cf2c66609336\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"2633f4fa-8ef2-47ef-a337-4a3e2fde1ed8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3845-Global1054\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3845\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3030\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3030\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.33.45.0/31\",\r\n \"sessionPrefixV6\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"98.33.45.1\",\r\n \"microsoftSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a201\",\r\n \"peerSessionIPv4Address\": \"98.33.45.0\",\r\n \"peerSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3235,\r\n \"maxPrefixesAdvertisedV6\": 660,\r\n \"md5AuthenticationKey\": \"dd1ad81da0c43262138fdd45621b4fce\"\r\n },\r\n \"connectionIdentifier\": \"a5d263ad-f207-4370-b8fa-c41d4e4bfb0b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23912-Global6634\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_23912\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8074\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"68.244.26.0/31\",\r\n \"sessionPrefixV6\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"68.244.26.1\",\r\n \"microsoftSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f01\",\r\n \"peerSessionIPv4Address\": \"68.244.26.0\",\r\n \"peerSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"02617158-a0a1-4b38-be52-48a82291e52c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.106.15.0/31\",\r\n \"sessionPrefixV6\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"98.106.15.1\",\r\n \"microsoftSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e401\",\r\n \"peerSessionIPv4Address\": \"98.106.15.0\",\r\n \"peerSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"acbc2c96-0514-42f0-bf7e-7e990e3cf3bd\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33594-Global3903\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33594\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9994\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9994\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6be23f2e-4425-4a0c-92aa-078d2dbded09\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6eee85fd-d8b8-4cb6-ad28-331dacb1ffcd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"10f2afe8-a8fa-421c-a2d7-39dc5e69981d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"8f3cf999-01ac-4be8-89d6-7bade57408b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16793-Global5795\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16793\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8169\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17333,\r\n \"maxPrefixesAdvertisedV6\": 1699,\r\n \"md5AuthenticationKey\": \"8e033ac24a0aec29342b9e56a3c3c9da\"\r\n },\r\n \"connectionIdentifier\": \"3faa524b-3c7e-45b9-9730-23c74fcfde89\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global9478\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_29876\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4867\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4867\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"111.110.120.0/31\",\r\n \"sessionPrefixV6\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"111.110.120.1\",\r\n \"microsoftSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e501\",\r\n \"peerSessionIPv4Address\": \"111.110.120.0\",\r\n \"peerSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"2b032bec-573e-497f-90cb-c3bfae1d74f7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.9.187.0/31\",\r\n \"sessionPrefixV6\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"144.9.187.1\",\r\n \"microsoftSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6001\",\r\n \"peerSessionIPv4Address\": \"144.9.187.0\",\r\n \"peerSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"a69dd9bf-f3f2-4c7a-adad-7575a0c2105e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33040-Global7717\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_33040\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3613\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3613\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"195.207.169.0/31\",\r\n \"sessionPrefixV6\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"195.207.169.1\",\r\n \"microsoftSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee01\",\r\n \"peerSessionIPv4Address\": \"195.207.169.0\",\r\n \"peerSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"028d09fe-002a-43ea-a118-2bd1fb68a419\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"577e4919-6972-4483-8ce1-a105db563cf2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56289-Global3276\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56289\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7695\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7695\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.133.234.0/31\",\r\n \"sessionPrefixV6\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"65.133.234.1\",\r\n \"microsoftSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2701\",\r\n \"peerSessionIPv4Address\": \"65.133.234.0\",\r\n \"peerSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8004,\r\n \"maxPrefixesAdvertisedV6\": 355,\r\n \"md5AuthenticationKey\": \"2016403648c38d4be69f5be0e1200f4e\"\r\n },\r\n \"connectionIdentifier\": \"7959b9b5-7649-470d-98e3-6050a86e08b5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36432-Global5808\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_36432\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4733\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4733\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::13\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"e67fb138-6396-45f7-872c-996f0fd36696\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.19\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"5b224d0a-eced-4484-8157-9e4db06cb1f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::20\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"55c7c67d-fa0b-426e-b9a8-014cf30465ab\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.32\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"7894e86c-e880-45f6-acb9-a5b38c4a1b1a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6016-Global4041\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6016\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6696\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6696\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::24\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"d3bf0fca-3a44-4e63-9145-c4f702fb88be\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.36\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"eedebca3-7646-49be-b363-56655bd32bac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::34\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"645a0a4c-78ac-4b70-a5ff-6d6ae9499a63\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"9cccbc68-3666-490b-9244-bb4b9971e172\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59319-Global1353\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_59319\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS484\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS484\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"417870ae-07dd-4dbd-bd9b-c5c6119daa49\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"351effd8-21d4-43d5-9110-d45ffa3368dc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"7204f4b4-8c51-4b4a-8348-f8efe48e18ce\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"3aab6d7a-58b9-4e0b-8a25-7d2952980baf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"32e25349-19b5-4a87-b3d5-0e76f604fed9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"0dd98a7b-8507-479b-b25e-35ba9353c213\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"356ba959-f072-421c-9f3e-8534e8deda18\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"cf96536c-f94b-40e7-adf4-aff4a3096dcb\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/49827-Global2680\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_49827\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS422\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS422\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::40\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"2edba332-2d94-4714-b3e4-98acbd7e1442\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.64\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"bd3bb0ae-ac8c-4206-837b-7f94d828a0c0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::14\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"d12296b0-6854-49b3-bccc-18edf1ad241d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.20\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"babba121-4f55-4b76-acb3-6580769bafca\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37437-Global7419\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_37437\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d7e1184f-1ca2-4de4-9144-2d632fd682af\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"71d13747-68ad-4acf-a286-c2e0a36ba82a\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5f1e2606-2eec-4794-a67c-9337322b928d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4e9112e0-9988-4c7a-a8e4-aa57daa742b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/668-Global7167\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS668_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS668_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::16\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"6aa00aad-38ae-4ef8-85f5-bee4afa9cc0c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.22\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"1da43152-38f3-477f-a1eb-a198a0f6ad99\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::46\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"e78ead4d-d690-4269-8cee-7dec78d2e99f\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.70\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"c2efe8fe-577c-4cd8-86a3-e74cc9036656\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53983-Global1983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_53983\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS7750\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS7750\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"67.170.56.0/31\",\r\n \"sessionPrefixV6\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"67.170.56.1\",\r\n \"microsoftSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d01\",\r\n \"peerSessionIPv4Address\": \"67.170.56.0\",\r\n \"peerSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"d5b94538-8d2d-48f3-96e3-2c50dec5ee07\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"fc34f1c2-e760-4414-b093-d83895d3d982\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64208-Global5081\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64208\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Approved\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.241.142.0/31\",\r\n \"sessionPrefixV6\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"185.241.142.1\",\r\n \"microsoftSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1401\",\r\n \"peerSessionIPv4Address\": \"185.241.142.0\",\r\n \"peerSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10251,\r\n \"maxPrefixesAdvertisedV6\": 1330,\r\n \"md5AuthenticationKey\": \"7780370c8643382d2eb160d97edd5f1c\"\r\n },\r\n \"connectionIdentifier\": \"97d2a745-4212-4a7d-9a76-b0dd9fb1cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19424-Global6892\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19424\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1899\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1899\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"19ce6ec4-bf64-46a2-b507-5aec4c40625a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.231.27.0/31\",\r\n \"sessionPrefixV6\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"149.231.27.1\",\r\n \"microsoftSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3001\",\r\n \"peerSessionIPv4Address\": \"149.231.27.0\",\r\n \"peerSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"ce113ff6-1738-4243-afee-b97705152654\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31184-Global450\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31184\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7034\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7034\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"e8e40d30-da85-4f82-9a16-3f586b901ed9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.51.101.0/31\",\r\n \"sessionPrefixV6\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"162.51.101.1\",\r\n \"microsoftSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7301\",\r\n \"peerSessionIPv4Address\": \"162.51.101.0\",\r\n \"peerSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"0b7156cb-2231-468d-a4fd-73bdae981b1a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51635-Global745\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_51635\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7400\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7400\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.141.175.0/31\",\r\n \"sessionPrefixV6\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"93.141.175.1\",\r\n \"microsoftSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1401\",\r\n \"peerSessionIPv4Address\": \"93.141.175.0\",\r\n \"peerSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"e5a7caa5-c4b4-4416-af9c-a3adf2bf5403\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"60839266-ac4c-44bc-b1b8-641df73aea9e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/379-Global6216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_379\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection82\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection82\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"57402fb7-1c9e-4ef6-bb44-4922de3af0a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.27.22.0/31\",\r\n \"sessionPrefixV6\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00/127\",\r\n \"microsoftSessionIPv4Address\": \"78.27.22.1\",\r\n \"microsoftSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab01\",\r\n \"peerSessionIPv4Address\": \"78.27.22.0\",\r\n \"peerSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"daea5573-1fc3-4593-a233-ea7b5f7f1b3f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34380-Global1014\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_34380\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"22.11.140.0/31\",\r\n \"sessionPrefixV6\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100/127\",\r\n \"microsoftSessionIPv4Address\": \"22.11.140.1\",\r\n \"microsoftSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d101\",\r\n \"peerSessionIPv4Address\": \"22.11.140.0\",\r\n \"peerSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"80ea5dc6-4d5d-4df0-93ef-21ddf6cf6c5d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"134.226.190.0/31\",\r\n \"sessionPrefixV6\": \"86e2:be63:76e6:d683:2700:249:b574:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"134.226.190.1\",\r\n \"microsoftSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4401\",\r\n \"peerSessionIPv4Address\": \"134.226.190.0\",\r\n \"peerSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"5330b4ae-5ead-4afb-a49a-f59dad3904a9\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57101-Global2897\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57101\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9371\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9371\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"cc8d23e3-10fb-4780-9096-ea10f96dae6a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"142.228.109.0/31\",\r\n \"sessionPrefixV6\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"142.228.109.1\",\r\n \"microsoftSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a01\",\r\n \"peerSessionIPv4Address\": \"142.228.109.0\",\r\n \"peerSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"237cfc2a-ad06-4253-af56-bce385789d35\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57976-Global9981\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57976\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9425\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.221.133.0/31\",\r\n \"sessionPrefixV6\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"244.221.133.1\",\r\n \"microsoftSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d201\",\r\n \"peerSessionIPv4Address\": \"244.221.133.0\",\r\n \"peerSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"67e045e5-89f3-4144-808b-cccf19494f8b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"131.189.112.0/31\",\r\n \"sessionPrefixV6\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00/127\",\r\n \"microsoftSessionIPv4Address\": \"131.189.112.1\",\r\n \"microsoftSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e01\",\r\n \"peerSessionIPv4Address\": \"131.189.112.0\",\r\n \"peerSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"4ef0bc6f-789e-40fc-9dea-a9aabfa9486f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44308-Global8574\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_44308\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9651\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9651\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"75.99.4.0/31\",\r\n \"sessionPrefixV6\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100/127\",\r\n \"microsoftSessionIPv4Address\": \"75.99.4.1\",\r\n \"microsoftSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:101\",\r\n \"peerSessionIPv4Address\": \"75.99.4.0\",\r\n \"peerSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"6b3ad4ea-6d56-47bc-a6bc-815ba3ddf378\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"231.144.58.0/31\",\r\n \"sessionPrefixV6\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"231.144.58.1\",\r\n \"microsoftSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f01\",\r\n \"peerSessionIPv4Address\": \"231.144.58.0\",\r\n \"peerSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"563b4b12-fab1-435c-a334-058f73fe2a8a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2611-Global9175\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2611\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection496\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection496\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.116.123\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7f883a89-05be-4901-b304-05fc47accca4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"331da049-a2bb-46ac-9c41-5f72906ac7cf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8cb23af-e6df-4108-b88b-dd30ccb9d366\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce0e9470-c3f7-4673-bc03-91ab3d9ad381\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ad2fae6b-272b-4e29-9ac0-2782c2e3c383\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"efe489e4-1f8a-4766-871a-728b018755fe\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global2824\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.190\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"12e7f7c6-2465-4fd0-9440-c216f6c2d582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.191\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5d4f5837-bece-4493-a255-53962484beae\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/72-Global278\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS72_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS72_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"a8447c1e-d341-4da4-88bd-a76a9c0721c7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"cca4122e-a927-4b3d-9afc-a1b9da3ed3a1\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54458-Global2919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_54458\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7564\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7564\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.157.92.0/31\",\r\n \"sessionPrefixV6\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"19.157.92.1\",\r\n \"microsoftSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6901\",\r\n \"peerSessionIPv4Address\": \"19.157.92.0\",\r\n \"peerSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1729,\r\n \"maxPrefixesAdvertisedV6\": 1565,\r\n \"md5AuthenticationKey\": \"704410701a7bff3e044b4f1139e534e5\"\r\n },\r\n \"connectionIdentifier\": \"d743b2bd-bea1-4e34-84f0-13ca2cb562bc\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18517-Global1801\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_18517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8365\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8365\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11782,\r\n \"maxPrefixesAdvertisedV6\": 882,\r\n \"md5AuthenticationKey\": \"a7408a9c0fbcc713ac36dec95b8a5f42\"\r\n },\r\n \"connectionIdentifier\": \"a235ddd3-c4ae-45b5-be43-0211362e2d55\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20222-Global7444\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20222\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8212\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8212\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.120.235.0/31\",\r\n \"sessionPrefixV6\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"147.120.235.1\",\r\n \"microsoftSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c801\",\r\n \"peerSessionIPv4Address\": \"147.120.235.0\",\r\n \"peerSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"ebf6a328-6507-4787-acbb-cd424c9de916\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"36.52.67.0/31\",\r\n \"sessionPrefixV6\": \"2434:4356:60c:de62:834b:9a1e:6143:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"36.52.67.1\",\r\n \"microsoftSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f801\",\r\n \"peerSessionIPv4Address\": \"36.52.67.0\",\r\n \"peerSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"d5ad7303-7003-42fb-b4e0-f7734a1f0f2b\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35617-Global7735\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_35617\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3085\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3085\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"139.191.31.0/31\",\r\n \"sessionPrefixV6\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"139.191.31.1\",\r\n \"microsoftSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1401\",\r\n \"peerSessionIPv4Address\": \"139.191.31.0\",\r\n \"peerSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"71e1fddc-94c4-4b06-8989-a626f0d2c9f4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"108.72.41.0/31\",\r\n \"sessionPrefixV6\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00/127\",\r\n \"microsoftSessionIPv4Address\": \"108.72.41.1\",\r\n \"microsoftSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf01\",\r\n \"peerSessionIPv4Address\": \"108.72.41.0\",\r\n \"peerSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"d6b1f7e0-e93b-437e-9cf2-203e5771c1a6\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56428-Global1253\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56428\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8860\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8860\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.94.237.0/31\",\r\n \"sessionPrefixV6\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.94.237.1\",\r\n \"microsoftSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b01\",\r\n \"peerSessionIPv4Address\": \"55.94.237.0\",\r\n \"peerSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"30202584-a0c5-47ec-aa4d-dafb3beaeb2c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"73.136.152.0/31\",\r\n \"sessionPrefixV6\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"73.136.152.1\",\r\n \"microsoftSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d01\",\r\n \"peerSessionIPv4Address\": \"73.136.152.0\",\r\n \"peerSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"d5ac1b2e-6c36-4339-bf60-a5a70f0c6d61\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5003-Global7139\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_5003\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2105\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2105\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15835,\r\n \"maxPrefixesAdvertisedV6\": 563,\r\n \"md5AuthenticationKey\": \"585c293b6951a96b6bd7554816244c96\"\r\n },\r\n \"connectionIdentifier\": \"f386c9ea-6d73-47c4-aec0-0fa6a5eafe53\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34829-Global4677\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34829\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3952\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3952\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.30.162.0/31\",\r\n \"sessionPrefixV6\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"216.30.162.1\",\r\n \"microsoftSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2701\",\r\n \"peerSessionIPv4Address\": \"216.30.162.0\",\r\n \"peerSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"22686c93-9228-40c3-b9e2-06024cb283bd\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"37.125.37.0/31\",\r\n \"sessionPrefixV6\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"37.125.37.1\",\r\n \"microsoftSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a01\",\r\n \"peerSessionIPv4Address\": \"37.125.37.0\",\r\n \"peerSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"8d56db3a-f0bd-4664-a11d-a1068d8938fe\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16114-Global1956\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16114\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2120\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2120\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"d03f51cb-ca9c-4d3c-a32d-c02c3b03bfaa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"137.154.208.0/31\",\r\n \"sessionPrefixV6\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"137.154.208.1\",\r\n \"microsoftSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee01\",\r\n \"peerSessionIPv4Address\": \"137.154.208.0\",\r\n \"peerSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"b078e6b7-6347-459d-a015-d6b7479cf8c0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28075-Global7814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28075\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"bcdca94b-391e-4168-85f3-9da8b2a41a1f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"34.88.214.0/31\",\r\n \"sessionPrefixV6\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"34.88.214.1\",\r\n \"microsoftSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1401\",\r\n \"peerSessionIPv4Address\": \"34.88.214.0\",\r\n \"peerSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"deeee639-bdb8-4d1b-9d21-bafa19a2fc1c\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45517-Global4066\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_45517\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5710\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5710\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"52.239.189.0/31\",\r\n \"sessionPrefixV6\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"52.239.189.1\",\r\n \"microsoftSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a201\",\r\n \"peerSessionIPv4Address\": \"52.239.189.0\",\r\n \"peerSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7141,\r\n \"maxPrefixesAdvertisedV6\": 138,\r\n \"md5AuthenticationKey\": \"c2f11c2a70edd65d89edcc1273e6bb5f\"\r\n },\r\n \"connectionIdentifier\": \"1e7a420b-dbe2-4692-835c-553b4f72cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42464-Global4232\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_42464\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3894\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3894\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"103.181.171.0/31\",\r\n \"sessionPrefixV6\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"103.181.171.1\",\r\n \"microsoftSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3001\",\r\n \"peerSessionIPv4Address\": \"103.181.171.0\",\r\n \"peerSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"b20f9d94-06ff-4f52-b4fc-3e9708c4648b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"188.205.251.0/31\",\r\n \"sessionPrefixV6\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"188.205.251.1\",\r\n \"microsoftSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f801\",\r\n \"peerSessionIPv4Address\": \"188.205.251.0\",\r\n \"peerSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"a7dda619-8e63-47ae-91ae-09720e73dd7e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55557-Global4646\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_55557\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2299\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2299\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.128.176.0/31\",\r\n \"sessionPrefixV6\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"175.128.176.1\",\r\n \"microsoftSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b501\",\r\n \"peerSessionIPv4Address\": \"175.128.176.0\",\r\n \"peerSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"7a5d2ced-768e-42b2-a5a2-23befcc1ce36\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"23b67039-418c-47d4-8f87-672a1bc98038\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21718-Global4970\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21718\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2820\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2820\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.85.75.0/31\",\r\n \"sessionPrefixV6\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"152.85.75.1\",\r\n \"microsoftSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9801\",\r\n \"peerSessionIPv4Address\": \"152.85.75.0\",\r\n \"peerSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"51306af0-535a-4f93-b982-d6e715948f2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"701bebfc-992b-4e50-bcc1-875bc917a3a0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48055-Global3575\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_48055\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4062\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4062\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.86.5.0/31\",\r\n \"sessionPrefixV6\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300/127\",\r\n \"microsoftSessionIPv4Address\": \"157.86.5.1\",\r\n \"microsoftSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a301\",\r\n \"peerSessionIPv4Address\": \"157.86.5.0\",\r\n \"peerSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"93b6a793-ca54-4bb2-9eb0-d582ca04fde6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"191.133.12.0/31\",\r\n \"sessionPrefixV6\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"191.133.12.1\",\r\n \"microsoftSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a201\",\r\n \"peerSessionIPv4Address\": \"191.133.12.0\",\r\n \"peerSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"66128cbf-88da-4d2d-9433-f23e1ea9ae06\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52421-Global6227\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52421\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4712\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4712\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"159.197.53.0/31\",\r\n \"sessionPrefixV6\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"159.197.53.1\",\r\n \"microsoftSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b01\",\r\n \"peerSessionIPv4Address\": \"159.197.53.0\",\r\n \"peerSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1593,\r\n \"maxPrefixesAdvertisedV6\": 869,\r\n \"md5AuthenticationKey\": \"2016e74020f9b789bc3cabbd5fcfda05\"\r\n },\r\n \"connectionIdentifier\": \"9eaeac01-0444-4c4c-a967-7c87a1c4f55d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25255-Global5963\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25255\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5737\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5737\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"177.165.254.0/31\",\r\n \"sessionPrefixV6\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"177.165.254.1\",\r\n \"microsoftSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db01\",\r\n \"peerSessionIPv4Address\": \"177.165.254.0\",\r\n \"peerSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14754,\r\n \"maxPrefixesAdvertisedV6\": 445,\r\n \"md5AuthenticationKey\": \"55c206ed3830619b6df45fbf51cd09a4\"\r\n },\r\n \"connectionIdentifier\": \"9687a2ef-a4f1-42ba-9ece-1926839cbe8d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6783-Global437\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6783\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6568\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6568\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.167.207.0/31\",\r\n \"sessionPrefixV6\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.167.207.1\",\r\n \"microsoftSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d01\",\r\n \"peerSessionIPv4Address\": \"55.167.207.0\",\r\n \"peerSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"c38241f0-2e4e-4c82-b626-12da88cf7dac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.207.204.0/31\",\r\n \"sessionPrefixV6\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"65.207.204.1\",\r\n \"microsoftSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6901\",\r\n \"peerSessionIPv4Address\": \"65.207.204.0\",\r\n \"peerSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"962ac2c9-47e7-409e-be99-f7cd0c2eeb2a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32837-Global5224\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32837\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9736\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9736\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17424,\r\n \"maxPrefixesAdvertisedV6\": 665,\r\n \"md5AuthenticationKey\": \"6d7041094f7a46e95e55b5d84877a8bb\"\r\n },\r\n \"connectionIdentifier\": \"ec0ac197-a882-4634-88e3-88eeb085ac50\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2247-Global6056\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.236.50.0/31\",\r\n \"sessionPrefixV6\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"170.236.50.1\",\r\n \"microsoftSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2701\",\r\n \"peerSessionIPv4Address\": \"170.236.50.0\",\r\n \"peerSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"6cf7cf6c-5677-4c91-b089-ce631eda55e8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"62.96.156.0/31\",\r\n \"sessionPrefixV6\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100/127\",\r\n \"microsoftSessionIPv4Address\": \"62.96.156.1\",\r\n \"microsoftSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:101\",\r\n \"peerSessionIPv4Address\": \"62.96.156.0\",\r\n \"peerSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"5fff76ca-082a-4201-a5b2-f032076f3ff0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25517-Global7446\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6874\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6874\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.137.61\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"24999918-1a24-409c-96e1-ca57870dfe98\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"92124ec6-30ae-4398-a8d4-8c3ca8fc2f66\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.136.27\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"431c5028-3e6f-48e5-a22a-85b1df6ff155\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5136b3f7-5de7-4343-9706-ca6fa53261b0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.108.115.47\",\r\n \"peerSessionIPv4Address\": \"206.108.115.21\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1bd51316-1259-4729-b03f-e6940c1110d4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:38:1:0:a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"c624ccd1-568d-41f4-9ed1-e48b36401f48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.57\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"bc009cbe-ed12-4b3b-99ef-a033ac82aa80\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::57\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"caf72971-c457-4aad-ae2f-fc43158829ac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.58\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ec58692d-9f3b-4981-a94a-8bc84dbf3571\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::58\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3d137bc4-08d6-428c-919c-47c6adfbec0a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global4647\"\r\n }\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Chicago_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Chicago_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"91.104.97.0/31\",\r\n \"sessionPrefixV6\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"91.104.97.1\",\r\n \"microsoftSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee01\",\r\n \"peerSessionIPv4Address\": \"91.104.97.0\",\r\n \"peerSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10012,\r\n \"maxPrefixesAdvertisedV6\": 1757,\r\n \"md5AuthenticationKey\": \"5163206124f87c80eed8bad3ba6c423c\"\r\n },\r\n \"connectionIdentifier\": \"12d64126-3092-4394-a288-b41d637083ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51940-Global4386\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51940\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection6364\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6364\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"082f560c-9f24-405a-be63-3384abf57d2f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"664a4e12-906a-4538-88d0-3153815221f7\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41580-Global4786\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41580\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection941\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection941\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b2b250d6-7b3a-4533-a05f-a860b995cb05\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f3411d09-9adc-4a9c-8feb-075f7bc36cb5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"df1d303c-3f22-498c-badd-dd186b16bab8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ae8eca97-a508-41fc-8086-433fdb86a2f8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/109-Global6698\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS109_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS109_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.112\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"53105795-6cf2-4250-b887-117f79e4885b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.113\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8942623-7b94-4b2a-abac-e2f7d9796761\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"dde4aac0-63d0-44b5-86c9-caef39af6663\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"84d6aed5-5200-4bf3-8256-2e5143b6c985\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.160\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"429d2b15-bec7-4ac3-ad95-afdc16c664f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8cbeb370-ad75-4223-be63-0aeb8488f5f8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9ed05631-57c4-4b39-85fa-939fdb0bbac9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b4332c58-db74-4a76-a65c-917767f819e5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e3df46c-f2f5-4b79-834f-bdde368dff04\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b5b23fa2-3026-4e64-9e9e-2e3e497d618c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"2b98dd15-3389-4692-bc09-ce148d87793e\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/714-Global3147\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS714_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS714_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3388,\r\n \"maxPrefixesAdvertisedV6\": 443,\r\n \"md5AuthenticationKey\": \"0fd8210422aa88edc0d6f7c6f8efdd9e\"\r\n },\r\n \"connectionIdentifier\": \"2438d80a-f2a1-4909-8005-f1bc83fb74ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7557\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7557\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.17\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8bbbfe9f-9d97-456a-9b27-cb98b416cbb1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"090ee743-b122-46eb-8d25-840001b725f6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.65\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"67b8a9ae-de2c-4d97-965e-84eff3255406\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"26097e38-4998-42e0-b214-9e9df2bff652\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9194\"\r\n }\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Dallas_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Dallas_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredAsns/name9953?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZEFzbnMvbmFtZTk5NTM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredAsns/name4850?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRBc25zL25hbWU0ODUwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"asn\": 16070\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"asn\": 9155\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8b79c324-b014-4a15-825c-59c797dc70a3" + "cd915c84-b34b-4a1f-b6e9-abfc77e2cad5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "46" + "45" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-request-id": [ - "fd988d94-fca6-4ad5-a060-b92d8864f91e" + "94f15c83-813c-4cb4-a2fc-feb0f6e8dd06" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "34795888-ca18-4848-81ae-5c46e497c63f" + "03bc7161-7008-49de-8ffc-e1ab3e10a5be" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T220552Z:34795888-ca18-4848-81ae-5c46e497c63f" + "NORTHEUROPE:20210409T081021Z:03bc7161-7008-49de-8ffc-e1ab3e10a5be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:05:52 GMT" + "Fri, 09 Apr 2021 08:10:20 GMT" ], "Content-Length": [ - "105" + "128" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n }\r\n}", "StatusCode": 405 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredAsns/name9953?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZEFzbnMvbmFtZTk5NTM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredAsns/name4850?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRBc25zL25hbWU0ODUwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"asn\": 16070\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"asn\": 9155\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "566fbd05-3de0-457e-a5dd-c46fec163405" + "965ca262-c6e0-4989-9903-3e80f4a625b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "46" + "45" ] }, "ResponseHeaders": { @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "5cf4f598-da07-49be-8501-8e6d5200f00d" + "8280f78e-6450-496a-8e96-b40ae6773553" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "435fdcf9-b48e-40fd-b717-be95e70326e7" + "233d2d1a-da35-4f2d-af4e-fc69e33fa8ec" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T220553Z:435fdcf9-b48e-40fd-b717-be95e70326e7" + "NORTHEUROPE:20210409T081021Z:233d2d1a-da35-4f2d-af4e-fc69e33fa8ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:05:53 GMT" + "Fri, 09 Apr 2021 08:10:21 GMT" ], "Content-Length": [ - "105" + "128" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,32 +189,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n }\r\n}", "StatusCode": 405 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredAsns/name9953?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZEFzbnMvbmFtZTk5NTM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredAsns/name4850?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRBc25zL25hbWU0ODUwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"asn\": 16070\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"asn\": 9155\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "facd2dee-f72c-478c-9ad2-44f912758005" + "77ac3999-5ece-4319-b044-2a3adc460992" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "46" + "45" ] }, "ResponseHeaders": { @@ -225,16 +225,16 @@ "no-cache" ], "x-ms-request-id": [ - "3cc42a52-c131-41f5-828f-ed1522f3d1e9" + "9d1ea17a-45c8-42ed-8829-8d61b6a39a5d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "39a7bfe6-380c-4b21-a9bd-7b7fcd6b2f5c" + "9e126553-b708-4247-86bf-e1ad4f162b25" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T220553Z:39a7bfe6-380c-4b21-a9bd-7b7fcd6b2f5c" + "NORTHEUROPE:20210409T081022Z:9e126553-b708-4247-86bf-e1ad4f162b25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,10 +243,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:05:53 GMT" + "Fri, 09 Apr 2021 08:10:21 GMT" ], "Content-Length": [ - "105" + "128" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,13 +255,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n }\r\n}", "StatusCode": 405 } ], "Names": { "Test-CreateRegisteredAsn": [ - "name9953" + "name4850" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredAsn/TestGetRegisteredAsn.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredAsn/TestGetRegisteredAsn.json index e4a5e1af38d6..9ae82bc0cdda 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredAsn/TestGetRegisteredAsn.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredAsn/TestGetRegisteredAsn.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0600500-3a84-4ada-ba3c-b5c9d461bd9e" + "4c227327-1192-4808-b539-dcf354eb7d3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "2b87e417-10b9-4e4f-a51e-5456d7928cc4" + "e7153113-a70b-41ec-867f-3b6183fc2cd4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "f73d2c4b-1d75-4127-a9cb-7994f2ebf62c" + "4179b98d-e38d-4bad-9776-fbf1da1c4352" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T220618Z:f73d2c4b-1d75-4127-a9cb-7994f2ebf62c" + "NORTHEUROPE:20210409T081105Z:4179b98d-e38d-4bad-9776-fbf1da1c4352" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:06:17 GMT" + "Fri, 09 Apr 2021 08:11:05 GMT" ], "Content-Length": [ - "99132" + "402977" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"eTag\": \"1a7307ac-8785-4afa-b15e-3053eba6430a\",\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"0dbcf12a-a30d-4531-af2b-b560d88df0db\",\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"4ec2bbb9-617f-45ea-9ea8-fc1fe9845807\",\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"99b647e7-3be4-4186-8801-bc6c804863c5\",\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"273ec016-cf39-4313-ba2a-0e51ee87902b\",\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"eTag\": \"d11ef80b-25cb-4ea0-81b5-5f90646e9774\",\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"eTag\": \"d726b703-5b65-4789-8ddb-3821435e2da0\",\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"eTag\": \"b515a998-0004-42fd-a328-41426bd23b60\",\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"eTag\": \"2eeb972b-9c7e-4a63-b3e6-33da7d9d4c9e\",\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"2dee5bea-fd7c-4236-8976-5843e679b1d6\",\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"e1043c0b-a467-44b4-bec9-9261c6d62eb8\",\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b42e77ee-15ca-461c-85ca-5615a81302f4\",\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"1178ef0f-3372-42f5-891d-b811a356f5dc\",\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b097a98b-47d5-42eb-8159-026f5f90b363\",\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"eTag\": \"0b4f1b38-48c2-4553-a6cc-6f40d339dede\",\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"eTag\": \"3519eb65-e58e-4288-8af1-46b77bcc4b6b\",\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"c98788d8-51bf-4f77-b014-ae544238e6c3\",\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"3f14d313-16e7-495e-a8dd-56fbf26098a2\",\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"eTag\": \"9157828a-6376-423f-a884-1ce5b8ccf3e4\",\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b9bc5839-449f-476c-a2bd-01917acb1f65\",\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1354,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"eb4a5668-bd19-4a93-84b0-77284be0d425\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"6af5f30a-9282-489b-96be-cf207d4f0615\",\r\n \"name\": \"test1\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/test1\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"d7bfa4d1-72ec-4ac3-8fc2-651a713d95e5\",\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 100004,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d592b65d-45eb-4494-954e-9abbf2cf2081\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"TestProductionReadyFacilityPeering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.130\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"80051dee-4f1c-43b6-97dc-2ac36eb66bdd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f411576e-9678-4f8c-9bb9-182e438e894d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.180\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Active\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4d57976-4803-43bb-8741-47c7d122f531\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Active\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"362a98a2-ea1a-4cfa-8e0a-ff8fd6caa5b9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global8141\"\r\n }\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Bucharest_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Bucharest_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.218/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b10/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.219\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b12\",\r\n \"peerSessionIPv4Address\": \"104.44.197.218\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b11\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.216/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b0c/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.217\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0e\",\r\n \"peerSessionIPv4Address\": \"104.44.197.216\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b0d\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.214/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b08/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.215\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0a\",\r\n \"peerSessionIPv4Address\": \"104.44.197.214\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b09\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.212/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b04/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.213\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b06\",\r\n \"peerSessionIPv4Address\": \"104.44.197.212\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b05\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"423bc362-bd7c-41d2-b402-5244ff93fa2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a352069e-0f89-4c4c-892c-04968a125395\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"4d89564e-855e-437f-aa06-e12a85eb89ac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c06111ff-0542-441e-922f-c8af28d2190c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"56e866cb-484e-44b4-93b5-d56c5d497b54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"dc8f1805-bf5b-4f22-8f55-470fba67ea0a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a352069e-0f89-4c4c-892c-04968a125395\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a352069e-0f89-4c4c-892c-04968a125395\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c06111ff-0542-441e-922f-c8af28d2190c\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_c06111ff-0542-441e-922f-c8af28d2190c\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS9116_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS9116_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"241.184.55.0/31\",\r\n \"sessionPrefixV6\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"241.184.55.1\",\r\n \"microsoftSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac01\",\r\n \"peerSessionIPv4Address\": \"241.184.55.0\",\r\n \"peerSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10794,\r\n \"maxPrefixesAdvertisedV6\": 1430,\r\n \"md5AuthenticationKey\": \"68918b1b5b130694aec6dcb3432f7b3a\"\r\n },\r\n \"connectionIdentifier\": \"7f446685-9191-41b2-be9c-7f56c699efe2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55253-Global5765\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_55253\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9950\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9950\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.196.88.0/31\",\r\n \"sessionPrefixV6\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"29.196.88.1\",\r\n \"microsoftSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8601\",\r\n \"peerSessionIPv4Address\": \"29.196.88.0\",\r\n \"peerSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"660a83b4-2f56-430e-b885-c3464acfc4b9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"6.7.47.0/31\",\r\n \"sessionPrefixV6\": \"607:2f23:e383:ba42:4b63:950:4d25:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"6.7.47.1\",\r\n \"microsoftSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e501\",\r\n \"peerSessionIPv4Address\": \"6.7.47.0\",\r\n \"peerSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"e86e3109-b558-43cb-ab82-1e27dcce4459\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/50896-Global8957\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_50896\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1538\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.54.20.0/31\",\r\n \"sessionPrefixV6\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"170.54.20.1\",\r\n \"microsoftSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6901\",\r\n \"peerSessionIPv4Address\": \"170.54.20.0\",\r\n \"peerSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"8b253073-c71b-480d-bd96-e919f594fc04\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.136.117.0/31\",\r\n \"sessionPrefixV6\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"203.136.117.1\",\r\n \"microsoftSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a201\",\r\n \"peerSessionIPv4Address\": \"203.136.117.0\",\r\n \"peerSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"80472de1-e0af-479e-855b-3d800af32726\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2489-Global3700\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2489\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1959\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1959\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.210.52.0/31\",\r\n \"sessionPrefixV6\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"78.210.52.1\",\r\n \"microsoftSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6901\",\r\n \"peerSessionIPv4Address\": \"78.210.52.0\",\r\n \"peerSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"78b1382e-c5be-4f6c-8dc3-a6d920a5dc22\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"60.241.107.0/31\",\r\n \"sessionPrefixV6\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"60.241.107.1\",\r\n \"microsoftSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9901\",\r\n \"peerSessionIPv4Address\": \"60.241.107.0\",\r\n \"peerSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"eab77b83-f1f0-4348-914c-3c2287891cf5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38128-Global3805\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38128\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8137\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8137\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"a5ff08de-7ec0-4eb7-afd7-ca2f7fe95194\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"d0e178ac-f585-4bf3-bffb-4ec351be92d1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22815-Global919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22815\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8728\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.83.157.0/31\",\r\n \"sessionPrefixV6\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"144.83.157.1\",\r\n \"microsoftSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a201\",\r\n \"peerSessionIPv4Address\": \"144.83.157.0\",\r\n \"peerSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3670,\r\n \"maxPrefixesAdvertisedV6\": 633,\r\n \"md5AuthenticationKey\": \"f79cc7d1fc7a955029fa7d655672fec0\"\r\n },\r\n \"connectionIdentifier\": \"c23d0784-d60f-45e5-822b-9a4712926e7c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11364-Global7480\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_11364\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2029\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2029\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"45.127.211.0/31\",\r\n \"sessionPrefixV6\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"45.127.211.1\",\r\n \"microsoftSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3001\",\r\n \"peerSessionIPv4Address\": \"45.127.211.0\",\r\n \"peerSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3752,\r\n \"maxPrefixesAdvertisedV6\": 1476,\r\n \"md5AuthenticationKey\": \"1d7912808f2b7701e878d5db7248b75c\"\r\n },\r\n \"connectionIdentifier\": \"0d816d82-f5a3-4240-961b-230cf135d4ab\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11737-Global8819\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_11737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2500\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2500\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1408,\r\n \"maxPrefixesAdvertisedV6\": 832,\r\n \"md5AuthenticationKey\": \"ce6640d9404bc472ff6538bf66bc4888\"\r\n },\r\n \"connectionIdentifier\": \"00812dcc-15a1-46f0-b4fd-1ee466ccc231\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64098-Global3338\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_64098\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2881\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2881\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"118.39.68.0/31\",\r\n \"sessionPrefixV6\": \"7627:4409:7884:e034:e6aa:335b:9335:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"118.39.68.1\",\r\n \"microsoftSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9901\",\r\n \"peerSessionIPv4Address\": \"118.39.68.0\",\r\n \"peerSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18413,\r\n \"maxPrefixesAdvertisedV6\": 554,\r\n \"md5AuthenticationKey\": \"28c359f10c907ad3adc52539a996703a\"\r\n },\r\n \"connectionIdentifier\": \"75bc6a0d-2d96-45fe-9628-48b4a37dd80c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15592-Global9066\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_15592\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection468\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection468\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.123.118.0/31\",\r\n \"sessionPrefixV6\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"29.123.118.1\",\r\n \"microsoftSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4401\",\r\n \"peerSessionIPv4Address\": \"29.123.118.0\",\r\n \"peerSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19531,\r\n \"maxPrefixesAdvertisedV6\": 1180,\r\n \"md5AuthenticationKey\": \"f1a078d353e513b9a4eba41e34924dbf\"\r\n },\r\n \"connectionIdentifier\": \"13c6fcb9-4b4a-42c7-8b36-a2745ab460e6\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53691-Global3806\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_53691\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6020\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6020\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db47cdc1-7407-42c5-a134-3674452d656e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce7825b9-289e-4bc8-b1b5-99de54e8e582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4351bf08-b728-4c55-8847-00c4391d1b23\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a260272d-520f-4a4a-a8a6-0fff0f1e85d5\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global6072\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.157.57.0/31\",\r\n \"sessionPrefixV6\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"149.157.57.1\",\r\n \"microsoftSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee01\",\r\n \"peerSessionIPv4Address\": \"149.157.57.0\",\r\n \"peerSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"d588ae8f-ddc1-4d41-afe7-bdc71385bb17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"113.147.198.0/31\",\r\n \"sessionPrefixV6\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"113.147.198.1\",\r\n \"microsoftSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b01\",\r\n \"peerSessionIPv4Address\": \"113.147.198.0\",\r\n \"peerSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"8ec4cbaa-d47d-4ec4-8c4c-b4ccdd58d3ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47528-Global3377\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_47528\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection865\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection865\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"569ae825-ea67-452e-a49d-32514bb56251\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"7c96d251-9cfd-427e-90ef-f2820d85f6a3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"0ef62088-01a0-4565-9bc1-387553444c7b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"f806e838-2d22-4eb8-a866-85d79029cc5d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"487c0fc7-721a-44b1-869d-b9f23ee8ccb4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"fd74ac6a-ec60-4fc1-9385-b9fa721d04f3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"1984ea5e-8c72-43bf-8d4c-df005dfde027\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"065696ba-18c9-4485-926c-d4a5a120d914\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33348-Global4010\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33348\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS5732\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS5732\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.201.146.0/31\",\r\n \"sessionPrefixV6\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"175.201.146.1\",\r\n \"microsoftSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f701\",\r\n \"peerSessionIPv4Address\": \"175.201.146.0\",\r\n \"peerSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7884,\r\n \"maxPrefixesAdvertisedV6\": 1723,\r\n \"md5AuthenticationKey\": \"2fb12e8bdbb38a0bf40073a5127448be\"\r\n },\r\n \"connectionIdentifier\": \"a8f21a11-4f00-4662-b717-4b5e9d9c2827\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22267-Global9836\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22267\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4210\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4210\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16431,\r\n \"maxPrefixesAdvertisedV6\": 1391,\r\n \"md5AuthenticationKey\": \"4e29939390334ed41d3627ec11b9a89b\"\r\n },\r\n \"connectionIdentifier\": \"89e132fc-770d-47bd-8717-6b60e962a382\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34893-Global3365\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34893\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3927\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3927\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.193.205.0/31\",\r\n \"sessionPrefixV6\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"147.193.205.1\",\r\n \"microsoftSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a01\",\r\n \"peerSessionIPv4Address\": \"147.193.205.0\",\r\n \"peerSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1095,\r\n \"maxPrefixesAdvertisedV6\": 180,\r\n \"md5AuthenticationKey\": \"982fcaab1e2f365731f6ebefaf7cab66\"\r\n },\r\n \"connectionIdentifier\": \"5c050611-8122-4e93-9044-32b95dc6b006\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16734-Global9075\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_16734\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7969\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"6dc4a1ed-8ac6-49ba-a113-f8a6e49972a0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"386abe6f-68c7-4e56-bcdc-ba0ccb2aa15f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60646-Global7216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60646\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8373\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8373\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6825,\r\n \"maxPrefixesAdvertisedV6\": 411,\r\n \"md5AuthenticationKey\": \"96e1229f1a5ac0c2e4e8d0f08aca2d9e\"\r\n },\r\n \"connectionIdentifier\": \"0a833152-ecb1-40f9-a222-109734ef55a8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4279-Global6784\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_4279\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5996\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5996\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9533,\r\n \"maxPrefixesAdvertisedV6\": 1070,\r\n \"md5AuthenticationKey\": \"5c6596342ec124b2af63e7a0587fd778\"\r\n },\r\n \"connectionIdentifier\": \"a15d518d-4502-4c23-84d2-22f23db31de1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60935-Global5716\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60935\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection771\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection771\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16829,\r\n \"maxPrefixesAdvertisedV6\": 1913,\r\n \"md5AuthenticationKey\": \"e6978716baef8643586d9c5550bb145f\"\r\n },\r\n \"connectionIdentifier\": \"fc7815dd-9810-496b-b22a-3932d60f3ea3\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3398-Global3790\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3398\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5312\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5312\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"1.188.147.0/31\",\r\n \"sessionPrefixV6\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"1.188.147.1\",\r\n \"microsoftSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9801\",\r\n \"peerSessionIPv4Address\": \"1.188.147.0\",\r\n \"peerSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10933,\r\n \"maxPrefixesAdvertisedV6\": 1416,\r\n \"md5AuthenticationKey\": \"f5c4fdbbf67bf39ea7f672819443a8bc\"\r\n },\r\n \"connectionIdentifier\": \"5bcd8d64-0b61-4e5a-8263-8d4ea21a9110\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32686-Global3930\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32686\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8205\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8205\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"bd3cc92e-f1d3-4c92-bb09-010671084cd8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.160.231.0/31\",\r\n \"sessionPrefixV6\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"157.160.231.1\",\r\n \"microsoftSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e501\",\r\n \"peerSessionIPv4Address\": \"157.160.231.0\",\r\n \"peerSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"7d1c5297-f009-408e-9b29-c57421c2f8c1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/17252-Global7140\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_17252\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2040\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2040\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"5083537f-b6a8-4e4e-be82-ba56e525e655\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"4900f076-6bbb-4973-abc2-49171d221c9b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"30295231-964c-4aa0-94eb-21b672c07c19\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"efec4548-27f5-43e3-b379-710c6687cd89\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"c6e4ef27-303f-4328-9fe9-744ad7285984\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"adbc9d4d-34a5-4334-9e86-a8ee405ada48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"fe8b330b-647f-43cf-8ed7-1767e46daf95\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"f5fdd891-5b61-4f8f-ad88-2192c0fae0c7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19385-Global2700\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19385\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS9774\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS9774\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"767a25fb-482a-4de8-90c7-44f50e6a0590\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ccc44517-8c4a-4359-a7f3-401fa4d5d6b8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"9aaa78da-ef35-4d0e-bbb0-7da46aaf79ea\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"c50c466a-c260-4cab-b46a-709e840f73c5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"43c49727-d3fe-4d00-872d-7ad1fabc927b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ed89d4a6-f609-4838-b7b1-bedace0e58e8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"04eb48ba-3156-4de3-9e59-56f58b94ef65\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"4b30fc13-0557-45ed-af7b-428ef64e9a1b\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38121-Global6800\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38121\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b9c2be73-348e-4bc6-adae-1f429fe50fcc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"aec70c2a-1911-47a6-9363-1f8cae7c8db1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b153ba82-7ef1-470b-a57d-66a0b7e6f09d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3cb306cc-afbf-4ac9-9ce7-192499ee4003\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/293-Global8506\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS293_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS293_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.20.46.0/31\",\r\n \"sessionPrefixV6\": \"b414:2e70:710b:b870:e704:7013:1c33:4300/127\",\r\n \"microsoftSessionIPv4Address\": \"180.20.46.1\",\r\n \"microsoftSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4301\",\r\n \"peerSessionIPv4Address\": \"180.20.46.0\",\r\n \"peerSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7183,\r\n \"maxPrefixesAdvertisedV6\": 1576,\r\n \"md5AuthenticationKey\": \"7a24b847242eb9837a215004eabd4fe2\"\r\n },\r\n \"connectionIdentifier\": \"a7fae4b1-3ce2-441f-94e4-c2f53e71d5f8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5381-Global1967\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_5381\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection53\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection53\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.83.122.0/31\",\r\n \"sessionPrefixV6\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"19.83.122.1\",\r\n \"microsoftSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2701\",\r\n \"peerSessionIPv4Address\": \"19.83.122.0\",\r\n \"peerSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"7ba251d8-def4-4f26-b1b3-ff2961ce4c55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"201.99.39.0/31\",\r\n \"sessionPrefixV6\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00/127\",\r\n \"microsoftSessionIPv4Address\": \"201.99.39.1\",\r\n \"microsoftSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c01\",\r\n \"peerSessionIPv4Address\": \"201.99.39.0\",\r\n \"peerSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"116d22c4-06bf-4f60-8bfc-4566b2d1082a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62697-Global1922\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62697\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9700\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9700\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"30330c9c-8530-4382-aa73-bc8ee4096425\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"fcfcc7a8-5400-444e-90fe-a0dbdb79db73\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"86daab31-826e-4d8f-9c16-50be3c1cc249\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"907f7af9-eaab-4cdc-857d-cb75e9d4ca08\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"6d4d0342-d182-4dde-8d02-15965f98fd3b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"33897291-64e2-47ef-947e-416ec23397f2\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"58ddaf98-0ad8-4130-b876-533f89d4094d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"5ab62206-3e04-4e63-bb97-1945781c830a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46447-Global978\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_46447\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6348\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6348\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"72.62.182.0/31\",\r\n \"sessionPrefixV6\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"72.62.182.1\",\r\n \"microsoftSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db01\",\r\n \"peerSessionIPv4Address\": \"72.62.182.0\",\r\n \"peerSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8532,\r\n \"maxPrefixesAdvertisedV6\": 1402,\r\n \"md5AuthenticationKey\": \"7fadf7587435a401fac69d14b46fbafc\"\r\n },\r\n \"connectionIdentifier\": \"69872a12-8863-442d-a7d1-03cddc56127a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46638-Global2402\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_46638\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection327\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection327\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"26.86.40.0/31\",\r\n \"sessionPrefixV6\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"26.86.40.1\",\r\n \"microsoftSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d01\",\r\n \"peerSessionIPv4Address\": \"26.86.40.0\",\r\n \"peerSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4335,\r\n \"maxPrefixesAdvertisedV6\": 623,\r\n \"md5AuthenticationKey\": \"c72efb13cbf4fb236889a3dd66524266\"\r\n },\r\n \"connectionIdentifier\": \"564b7709-f845-4200-a0f0-4e099965ba52\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42259-Global4439\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_42259\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"7a4e14cb-0f30-4c2f-9d53-6c2cd9fa87a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.144.93.0/31\",\r\n \"sessionPrefixV6\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"101.144.93.1\",\r\n \"microsoftSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a01\",\r\n \"peerSessionIPv4Address\": \"101.144.93.0\",\r\n \"peerSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"1f7f6dea-1cf8-4d73-8e77-3185fbebba82\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41272-Global7358\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_41272\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1911\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1911\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.38.103.0/31\",\r\n \"sessionPrefixV6\": \"f426:6750:a75a:aa50:7935:7317:680b:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"244.38.103.1\",\r\n \"microsoftSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1401\",\r\n \"peerSessionIPv4Address\": \"244.38.103.0\",\r\n \"peerSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1228,\r\n \"maxPrefixesAdvertisedV6\": 1801,\r\n \"md5AuthenticationKey\": \"98d7a206c67f03e59871931988c72eb2\"\r\n },\r\n \"connectionIdentifier\": \"9104cb9b-68ce-4895-8824-6c34a686e6e0\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62737-Global7374\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8360\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8360\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"14.9.222.0/31\",\r\n \"sessionPrefixV6\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"14.9.222.1\",\r\n \"microsoftSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db01\",\r\n \"peerSessionIPv4Address\": \"14.9.222.0\",\r\n \"peerSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"ec084ea0-757b-41d0-9825-eaf547511859\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"978b0b63-f979-4c4b-a4a7-814368d4f93a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/988-Global3898\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_988\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5745\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5745\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17707,\r\n \"maxPrefixesAdvertisedV6\": 480,\r\n \"md5AuthenticationKey\": \"71bbf7232def60205a04721e0f722154\"\r\n },\r\n \"connectionIdentifier\": \"fb9d1483-c466-4e22-a6a1-13c02a1df6ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27822-Global9380\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27822\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9957\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9957\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"132.6.82.0/31\",\r\n \"sessionPrefixV6\": \"8406:526b:1259:855e:deef:490c:23fa:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"132.6.82.1\",\r\n \"microsoftSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6001\",\r\n \"peerSessionIPv4Address\": \"132.6.82.0\",\r\n \"peerSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"ec643b08-9c69-48a8-a2d9-fe8f47685c54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.4.164.0/31\",\r\n \"sessionPrefixV6\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"124.4.164.1\",\r\n \"microsoftSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6901\",\r\n \"peerSessionIPv4Address\": \"124.4.164.0\",\r\n \"peerSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"daed42d1-0547-48ad-a3de-7127f378c862\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4457-Global4768\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4457\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1769\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1769\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"126.41.242.0/31\",\r\n \"sessionPrefixV6\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"126.41.242.1\",\r\n \"microsoftSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f01\",\r\n \"peerSessionIPv4Address\": \"126.41.242.0\",\r\n \"peerSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5168,\r\n \"maxPrefixesAdvertisedV6\": 1008,\r\n \"md5AuthenticationKey\": \"6c26585ffae85cbfdf6aa0daf4320ec9\"\r\n },\r\n \"connectionIdentifier\": \"e66f9263-c367-4da4-ac00-db4cd588e32b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13386-Global6814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_13386\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection81\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection81\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"183.130.94.0/31\",\r\n \"sessionPrefixV6\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"183.130.94.1\",\r\n \"microsoftSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac01\",\r\n \"peerSessionIPv4Address\": \"183.130.94.0\",\r\n \"peerSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1982,\r\n \"maxPrefixesAdvertisedV6\": 498,\r\n \"md5AuthenticationKey\": \"143c0ba4b802d74cc4e3581bb13384aa\"\r\n },\r\n \"connectionIdentifier\": \"7af5b5eb-e09a-4711-8de6-2710741bb1ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27207-Global7473\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27207\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection3103\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection3103\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"26bbec7c-1e28-4ddd-b58d-7bd8f8be5ade\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"6dcb956c-52c6-43db-b127-d31486831e0d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10813-Global3979\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_10813\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7223\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7223\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.231.248.0/31\",\r\n \"sessionPrefixV6\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"24.231.248.1\",\r\n \"microsoftSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b501\",\r\n \"peerSessionIPv4Address\": \"24.231.248.0\",\r\n \"peerSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 715,\r\n \"maxPrefixesAdvertisedV6\": 674,\r\n \"md5AuthenticationKey\": \"4680c8ad29418fedaa8ea1c1eed3f8d3\"\r\n },\r\n \"connectionIdentifier\": \"f4fe9ad5-c7f7-4fce-9b06-c203cc07f661\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4964-Global4917\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4964\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection9603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.93.16.0/31\",\r\n \"sessionPrefixV6\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500/127\",\r\n \"microsoftSessionIPv4Address\": \"180.93.16.1\",\r\n \"microsoftSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8501\",\r\n \"peerSessionIPv4Address\": \"180.93.16.0\",\r\n \"peerSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"13dd1202-c083-42ff-bdb7-cf2c66609336\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"2633f4fa-8ef2-47ef-a337-4a3e2fde1ed8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3845-Global1054\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3845\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3030\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3030\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.33.45.0/31\",\r\n \"sessionPrefixV6\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"98.33.45.1\",\r\n \"microsoftSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a201\",\r\n \"peerSessionIPv4Address\": \"98.33.45.0\",\r\n \"peerSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3235,\r\n \"maxPrefixesAdvertisedV6\": 660,\r\n \"md5AuthenticationKey\": \"dd1ad81da0c43262138fdd45621b4fce\"\r\n },\r\n \"connectionIdentifier\": \"a5d263ad-f207-4370-b8fa-c41d4e4bfb0b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23912-Global6634\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_23912\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8074\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"68.244.26.0/31\",\r\n \"sessionPrefixV6\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"68.244.26.1\",\r\n \"microsoftSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f01\",\r\n \"peerSessionIPv4Address\": \"68.244.26.0\",\r\n \"peerSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"02617158-a0a1-4b38-be52-48a82291e52c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.106.15.0/31\",\r\n \"sessionPrefixV6\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"98.106.15.1\",\r\n \"microsoftSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e401\",\r\n \"peerSessionIPv4Address\": \"98.106.15.0\",\r\n \"peerSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"acbc2c96-0514-42f0-bf7e-7e990e3cf3bd\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33594-Global3903\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33594\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9994\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9994\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6be23f2e-4425-4a0c-92aa-078d2dbded09\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6eee85fd-d8b8-4cb6-ad28-331dacb1ffcd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"10f2afe8-a8fa-421c-a2d7-39dc5e69981d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"8f3cf999-01ac-4be8-89d6-7bade57408b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16793-Global5795\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16793\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8169\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17333,\r\n \"maxPrefixesAdvertisedV6\": 1699,\r\n \"md5AuthenticationKey\": \"8e033ac24a0aec29342b9e56a3c3c9da\"\r\n },\r\n \"connectionIdentifier\": \"3faa524b-3c7e-45b9-9730-23c74fcfde89\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global9478\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_29876\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4867\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4867\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"111.110.120.0/31\",\r\n \"sessionPrefixV6\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"111.110.120.1\",\r\n \"microsoftSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e501\",\r\n \"peerSessionIPv4Address\": \"111.110.120.0\",\r\n \"peerSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"2b032bec-573e-497f-90cb-c3bfae1d74f7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.9.187.0/31\",\r\n \"sessionPrefixV6\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"144.9.187.1\",\r\n \"microsoftSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6001\",\r\n \"peerSessionIPv4Address\": \"144.9.187.0\",\r\n \"peerSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"a69dd9bf-f3f2-4c7a-adad-7575a0c2105e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33040-Global7717\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_33040\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3613\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3613\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"195.207.169.0/31\",\r\n \"sessionPrefixV6\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"195.207.169.1\",\r\n \"microsoftSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee01\",\r\n \"peerSessionIPv4Address\": \"195.207.169.0\",\r\n \"peerSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"028d09fe-002a-43ea-a118-2bd1fb68a419\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"577e4919-6972-4483-8ce1-a105db563cf2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56289-Global3276\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56289\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7695\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7695\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.133.234.0/31\",\r\n \"sessionPrefixV6\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"65.133.234.1\",\r\n \"microsoftSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2701\",\r\n \"peerSessionIPv4Address\": \"65.133.234.0\",\r\n \"peerSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8004,\r\n \"maxPrefixesAdvertisedV6\": 355,\r\n \"md5AuthenticationKey\": \"2016403648c38d4be69f5be0e1200f4e\"\r\n },\r\n \"connectionIdentifier\": \"7959b9b5-7649-470d-98e3-6050a86e08b5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36432-Global5808\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_36432\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4733\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4733\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::13\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"e67fb138-6396-45f7-872c-996f0fd36696\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.19\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"5b224d0a-eced-4484-8157-9e4db06cb1f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::20\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"55c7c67d-fa0b-426e-b9a8-014cf30465ab\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.32\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"7894e86c-e880-45f6-acb9-a5b38c4a1b1a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6016-Global4041\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6016\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6696\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6696\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::24\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"d3bf0fca-3a44-4e63-9145-c4f702fb88be\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.36\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"eedebca3-7646-49be-b363-56655bd32bac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::34\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"645a0a4c-78ac-4b70-a5ff-6d6ae9499a63\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"9cccbc68-3666-490b-9244-bb4b9971e172\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59319-Global1353\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_59319\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS484\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS484\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"417870ae-07dd-4dbd-bd9b-c5c6119daa49\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"351effd8-21d4-43d5-9110-d45ffa3368dc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"7204f4b4-8c51-4b4a-8348-f8efe48e18ce\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"3aab6d7a-58b9-4e0b-8a25-7d2952980baf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"32e25349-19b5-4a87-b3d5-0e76f604fed9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"0dd98a7b-8507-479b-b25e-35ba9353c213\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"356ba959-f072-421c-9f3e-8534e8deda18\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"cf96536c-f94b-40e7-adf4-aff4a3096dcb\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/49827-Global2680\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_49827\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS422\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS422\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::40\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"2edba332-2d94-4714-b3e4-98acbd7e1442\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.64\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"bd3bb0ae-ac8c-4206-837b-7f94d828a0c0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::14\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"d12296b0-6854-49b3-bccc-18edf1ad241d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.20\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"babba121-4f55-4b76-acb3-6580769bafca\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37437-Global7419\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_37437\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d7e1184f-1ca2-4de4-9144-2d632fd682af\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"71d13747-68ad-4acf-a286-c2e0a36ba82a\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5f1e2606-2eec-4794-a67c-9337322b928d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4e9112e0-9988-4c7a-a8e4-aa57daa742b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/668-Global7167\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS668_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS668_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::16\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"6aa00aad-38ae-4ef8-85f5-bee4afa9cc0c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.22\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"1da43152-38f3-477f-a1eb-a198a0f6ad99\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::46\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"e78ead4d-d690-4269-8cee-7dec78d2e99f\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.70\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"c2efe8fe-577c-4cd8-86a3-e74cc9036656\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53983-Global1983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_53983\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS7750\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS7750\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"67.170.56.0/31\",\r\n \"sessionPrefixV6\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"67.170.56.1\",\r\n \"microsoftSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d01\",\r\n \"peerSessionIPv4Address\": \"67.170.56.0\",\r\n \"peerSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"d5b94538-8d2d-48f3-96e3-2c50dec5ee07\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"fc34f1c2-e760-4414-b093-d83895d3d982\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64208-Global5081\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64208\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Approved\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.241.142.0/31\",\r\n \"sessionPrefixV6\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"185.241.142.1\",\r\n \"microsoftSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1401\",\r\n \"peerSessionIPv4Address\": \"185.241.142.0\",\r\n \"peerSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10251,\r\n \"maxPrefixesAdvertisedV6\": 1330,\r\n \"md5AuthenticationKey\": \"7780370c8643382d2eb160d97edd5f1c\"\r\n },\r\n \"connectionIdentifier\": \"97d2a745-4212-4a7d-9a76-b0dd9fb1cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19424-Global6892\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19424\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1899\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1899\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"19ce6ec4-bf64-46a2-b507-5aec4c40625a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.231.27.0/31\",\r\n \"sessionPrefixV6\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"149.231.27.1\",\r\n \"microsoftSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3001\",\r\n \"peerSessionIPv4Address\": \"149.231.27.0\",\r\n \"peerSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"ce113ff6-1738-4243-afee-b97705152654\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31184-Global450\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31184\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7034\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7034\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"e8e40d30-da85-4f82-9a16-3f586b901ed9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.51.101.0/31\",\r\n \"sessionPrefixV6\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"162.51.101.1\",\r\n \"microsoftSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7301\",\r\n \"peerSessionIPv4Address\": \"162.51.101.0\",\r\n \"peerSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"0b7156cb-2231-468d-a4fd-73bdae981b1a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51635-Global745\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_51635\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7400\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7400\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.141.175.0/31\",\r\n \"sessionPrefixV6\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"93.141.175.1\",\r\n \"microsoftSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1401\",\r\n \"peerSessionIPv4Address\": \"93.141.175.0\",\r\n \"peerSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"e5a7caa5-c4b4-4416-af9c-a3adf2bf5403\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"60839266-ac4c-44bc-b1b8-641df73aea9e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/379-Global6216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_379\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection82\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection82\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"57402fb7-1c9e-4ef6-bb44-4922de3af0a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.27.22.0/31\",\r\n \"sessionPrefixV6\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00/127\",\r\n \"microsoftSessionIPv4Address\": \"78.27.22.1\",\r\n \"microsoftSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab01\",\r\n \"peerSessionIPv4Address\": \"78.27.22.0\",\r\n \"peerSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"daea5573-1fc3-4593-a233-ea7b5f7f1b3f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34380-Global1014\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_34380\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"22.11.140.0/31\",\r\n \"sessionPrefixV6\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100/127\",\r\n \"microsoftSessionIPv4Address\": \"22.11.140.1\",\r\n \"microsoftSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d101\",\r\n \"peerSessionIPv4Address\": \"22.11.140.0\",\r\n \"peerSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"80ea5dc6-4d5d-4df0-93ef-21ddf6cf6c5d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"134.226.190.0/31\",\r\n \"sessionPrefixV6\": \"86e2:be63:76e6:d683:2700:249:b574:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"134.226.190.1\",\r\n \"microsoftSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4401\",\r\n \"peerSessionIPv4Address\": \"134.226.190.0\",\r\n \"peerSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"5330b4ae-5ead-4afb-a49a-f59dad3904a9\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57101-Global2897\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57101\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9371\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9371\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"cc8d23e3-10fb-4780-9096-ea10f96dae6a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"142.228.109.0/31\",\r\n \"sessionPrefixV6\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"142.228.109.1\",\r\n \"microsoftSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a01\",\r\n \"peerSessionIPv4Address\": \"142.228.109.0\",\r\n \"peerSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"237cfc2a-ad06-4253-af56-bce385789d35\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57976-Global9981\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57976\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9425\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.221.133.0/31\",\r\n \"sessionPrefixV6\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"244.221.133.1\",\r\n \"microsoftSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d201\",\r\n \"peerSessionIPv4Address\": \"244.221.133.0\",\r\n \"peerSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"67e045e5-89f3-4144-808b-cccf19494f8b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"131.189.112.0/31\",\r\n \"sessionPrefixV6\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00/127\",\r\n \"microsoftSessionIPv4Address\": \"131.189.112.1\",\r\n \"microsoftSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e01\",\r\n \"peerSessionIPv4Address\": \"131.189.112.0\",\r\n \"peerSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"4ef0bc6f-789e-40fc-9dea-a9aabfa9486f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44308-Global8574\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_44308\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9651\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9651\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"75.99.4.0/31\",\r\n \"sessionPrefixV6\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100/127\",\r\n \"microsoftSessionIPv4Address\": \"75.99.4.1\",\r\n \"microsoftSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:101\",\r\n \"peerSessionIPv4Address\": \"75.99.4.0\",\r\n \"peerSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"6b3ad4ea-6d56-47bc-a6bc-815ba3ddf378\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"231.144.58.0/31\",\r\n \"sessionPrefixV6\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"231.144.58.1\",\r\n \"microsoftSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f01\",\r\n \"peerSessionIPv4Address\": \"231.144.58.0\",\r\n \"peerSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"563b4b12-fab1-435c-a334-058f73fe2a8a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2611-Global9175\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2611\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection496\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection496\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.116.123\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7f883a89-05be-4901-b304-05fc47accca4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"331da049-a2bb-46ac-9c41-5f72906ac7cf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8cb23af-e6df-4108-b88b-dd30ccb9d366\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce0e9470-c3f7-4673-bc03-91ab3d9ad381\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ad2fae6b-272b-4e29-9ac0-2782c2e3c383\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"efe489e4-1f8a-4766-871a-728b018755fe\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global2824\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.190\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"12e7f7c6-2465-4fd0-9440-c216f6c2d582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.191\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5d4f5837-bece-4493-a255-53962484beae\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/72-Global278\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS72_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS72_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"a8447c1e-d341-4da4-88bd-a76a9c0721c7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"cca4122e-a927-4b3d-9afc-a1b9da3ed3a1\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54458-Global2919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_54458\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7564\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7564\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.157.92.0/31\",\r\n \"sessionPrefixV6\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"19.157.92.1\",\r\n \"microsoftSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6901\",\r\n \"peerSessionIPv4Address\": \"19.157.92.0\",\r\n \"peerSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1729,\r\n \"maxPrefixesAdvertisedV6\": 1565,\r\n \"md5AuthenticationKey\": \"704410701a7bff3e044b4f1139e534e5\"\r\n },\r\n \"connectionIdentifier\": \"d743b2bd-bea1-4e34-84f0-13ca2cb562bc\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18517-Global1801\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_18517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8365\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8365\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11782,\r\n \"maxPrefixesAdvertisedV6\": 882,\r\n \"md5AuthenticationKey\": \"a7408a9c0fbcc713ac36dec95b8a5f42\"\r\n },\r\n \"connectionIdentifier\": \"a235ddd3-c4ae-45b5-be43-0211362e2d55\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20222-Global7444\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20222\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8212\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8212\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.120.235.0/31\",\r\n \"sessionPrefixV6\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"147.120.235.1\",\r\n \"microsoftSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c801\",\r\n \"peerSessionIPv4Address\": \"147.120.235.0\",\r\n \"peerSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"ebf6a328-6507-4787-acbb-cd424c9de916\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"36.52.67.0/31\",\r\n \"sessionPrefixV6\": \"2434:4356:60c:de62:834b:9a1e:6143:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"36.52.67.1\",\r\n \"microsoftSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f801\",\r\n \"peerSessionIPv4Address\": \"36.52.67.0\",\r\n \"peerSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"d5ad7303-7003-42fb-b4e0-f7734a1f0f2b\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35617-Global7735\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_35617\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3085\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3085\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"139.191.31.0/31\",\r\n \"sessionPrefixV6\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"139.191.31.1\",\r\n \"microsoftSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1401\",\r\n \"peerSessionIPv4Address\": \"139.191.31.0\",\r\n \"peerSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"71e1fddc-94c4-4b06-8989-a626f0d2c9f4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"108.72.41.0/31\",\r\n \"sessionPrefixV6\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00/127\",\r\n \"microsoftSessionIPv4Address\": \"108.72.41.1\",\r\n \"microsoftSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf01\",\r\n \"peerSessionIPv4Address\": \"108.72.41.0\",\r\n \"peerSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"d6b1f7e0-e93b-437e-9cf2-203e5771c1a6\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56428-Global1253\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56428\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8860\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8860\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.94.237.0/31\",\r\n \"sessionPrefixV6\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.94.237.1\",\r\n \"microsoftSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b01\",\r\n \"peerSessionIPv4Address\": \"55.94.237.0\",\r\n \"peerSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"30202584-a0c5-47ec-aa4d-dafb3beaeb2c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"73.136.152.0/31\",\r\n \"sessionPrefixV6\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"73.136.152.1\",\r\n \"microsoftSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d01\",\r\n \"peerSessionIPv4Address\": \"73.136.152.0\",\r\n \"peerSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"d5ac1b2e-6c36-4339-bf60-a5a70f0c6d61\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5003-Global7139\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_5003\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2105\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2105\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15835,\r\n \"maxPrefixesAdvertisedV6\": 563,\r\n \"md5AuthenticationKey\": \"585c293b6951a96b6bd7554816244c96\"\r\n },\r\n \"connectionIdentifier\": \"f386c9ea-6d73-47c4-aec0-0fa6a5eafe53\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34829-Global4677\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34829\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3952\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3952\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.30.162.0/31\",\r\n \"sessionPrefixV6\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"216.30.162.1\",\r\n \"microsoftSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2701\",\r\n \"peerSessionIPv4Address\": \"216.30.162.0\",\r\n \"peerSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"22686c93-9228-40c3-b9e2-06024cb283bd\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"37.125.37.0/31\",\r\n \"sessionPrefixV6\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"37.125.37.1\",\r\n \"microsoftSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a01\",\r\n \"peerSessionIPv4Address\": \"37.125.37.0\",\r\n \"peerSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"8d56db3a-f0bd-4664-a11d-a1068d8938fe\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16114-Global1956\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16114\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2120\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2120\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"d03f51cb-ca9c-4d3c-a32d-c02c3b03bfaa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"137.154.208.0/31\",\r\n \"sessionPrefixV6\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"137.154.208.1\",\r\n \"microsoftSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee01\",\r\n \"peerSessionIPv4Address\": \"137.154.208.0\",\r\n \"peerSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"b078e6b7-6347-459d-a015-d6b7479cf8c0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28075-Global7814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28075\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"bcdca94b-391e-4168-85f3-9da8b2a41a1f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"34.88.214.0/31\",\r\n \"sessionPrefixV6\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"34.88.214.1\",\r\n \"microsoftSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1401\",\r\n \"peerSessionIPv4Address\": \"34.88.214.0\",\r\n \"peerSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"deeee639-bdb8-4d1b-9d21-bafa19a2fc1c\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45517-Global4066\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_45517\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5710\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5710\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"52.239.189.0/31\",\r\n \"sessionPrefixV6\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"52.239.189.1\",\r\n \"microsoftSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a201\",\r\n \"peerSessionIPv4Address\": \"52.239.189.0\",\r\n \"peerSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7141,\r\n \"maxPrefixesAdvertisedV6\": 138,\r\n \"md5AuthenticationKey\": \"c2f11c2a70edd65d89edcc1273e6bb5f\"\r\n },\r\n \"connectionIdentifier\": \"1e7a420b-dbe2-4692-835c-553b4f72cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42464-Global4232\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_42464\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3894\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3894\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"103.181.171.0/31\",\r\n \"sessionPrefixV6\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"103.181.171.1\",\r\n \"microsoftSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3001\",\r\n \"peerSessionIPv4Address\": \"103.181.171.0\",\r\n \"peerSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"b20f9d94-06ff-4f52-b4fc-3e9708c4648b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"188.205.251.0/31\",\r\n \"sessionPrefixV6\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"188.205.251.1\",\r\n \"microsoftSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f801\",\r\n \"peerSessionIPv4Address\": \"188.205.251.0\",\r\n \"peerSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"a7dda619-8e63-47ae-91ae-09720e73dd7e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55557-Global4646\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_55557\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2299\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2299\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.128.176.0/31\",\r\n \"sessionPrefixV6\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"175.128.176.1\",\r\n \"microsoftSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b501\",\r\n \"peerSessionIPv4Address\": \"175.128.176.0\",\r\n \"peerSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"7a5d2ced-768e-42b2-a5a2-23befcc1ce36\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"23b67039-418c-47d4-8f87-672a1bc98038\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21718-Global4970\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21718\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2820\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2820\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.85.75.0/31\",\r\n \"sessionPrefixV6\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"152.85.75.1\",\r\n \"microsoftSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9801\",\r\n \"peerSessionIPv4Address\": \"152.85.75.0\",\r\n \"peerSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"51306af0-535a-4f93-b982-d6e715948f2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"701bebfc-992b-4e50-bcc1-875bc917a3a0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48055-Global3575\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_48055\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4062\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4062\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.86.5.0/31\",\r\n \"sessionPrefixV6\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300/127\",\r\n \"microsoftSessionIPv4Address\": \"157.86.5.1\",\r\n \"microsoftSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a301\",\r\n \"peerSessionIPv4Address\": \"157.86.5.0\",\r\n \"peerSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"93b6a793-ca54-4bb2-9eb0-d582ca04fde6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"191.133.12.0/31\",\r\n \"sessionPrefixV6\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"191.133.12.1\",\r\n \"microsoftSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a201\",\r\n \"peerSessionIPv4Address\": \"191.133.12.0\",\r\n \"peerSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"66128cbf-88da-4d2d-9433-f23e1ea9ae06\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52421-Global6227\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52421\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4712\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4712\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"159.197.53.0/31\",\r\n \"sessionPrefixV6\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"159.197.53.1\",\r\n \"microsoftSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b01\",\r\n \"peerSessionIPv4Address\": \"159.197.53.0\",\r\n \"peerSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1593,\r\n \"maxPrefixesAdvertisedV6\": 869,\r\n \"md5AuthenticationKey\": \"2016e74020f9b789bc3cabbd5fcfda05\"\r\n },\r\n \"connectionIdentifier\": \"9eaeac01-0444-4c4c-a967-7c87a1c4f55d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25255-Global5963\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25255\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5737\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5737\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"177.165.254.0/31\",\r\n \"sessionPrefixV6\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"177.165.254.1\",\r\n \"microsoftSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db01\",\r\n \"peerSessionIPv4Address\": \"177.165.254.0\",\r\n \"peerSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14754,\r\n \"maxPrefixesAdvertisedV6\": 445,\r\n \"md5AuthenticationKey\": \"55c206ed3830619b6df45fbf51cd09a4\"\r\n },\r\n \"connectionIdentifier\": \"9687a2ef-a4f1-42ba-9ece-1926839cbe8d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6783-Global437\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6783\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6568\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6568\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.167.207.0/31\",\r\n \"sessionPrefixV6\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.167.207.1\",\r\n \"microsoftSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d01\",\r\n \"peerSessionIPv4Address\": \"55.167.207.0\",\r\n \"peerSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"c38241f0-2e4e-4c82-b626-12da88cf7dac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.207.204.0/31\",\r\n \"sessionPrefixV6\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"65.207.204.1\",\r\n \"microsoftSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6901\",\r\n \"peerSessionIPv4Address\": \"65.207.204.0\",\r\n \"peerSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"962ac2c9-47e7-409e-be99-f7cd0c2eeb2a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32837-Global5224\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32837\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9736\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9736\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17424,\r\n \"maxPrefixesAdvertisedV6\": 665,\r\n \"md5AuthenticationKey\": \"6d7041094f7a46e95e55b5d84877a8bb\"\r\n },\r\n \"connectionIdentifier\": \"ec0ac197-a882-4634-88e3-88eeb085ac50\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2247-Global6056\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.236.50.0/31\",\r\n \"sessionPrefixV6\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"170.236.50.1\",\r\n \"microsoftSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2701\",\r\n \"peerSessionIPv4Address\": \"170.236.50.0\",\r\n \"peerSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"6cf7cf6c-5677-4c91-b089-ce631eda55e8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"62.96.156.0/31\",\r\n \"sessionPrefixV6\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100/127\",\r\n \"microsoftSessionIPv4Address\": \"62.96.156.1\",\r\n \"microsoftSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:101\",\r\n \"peerSessionIPv4Address\": \"62.96.156.0\",\r\n \"peerSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"5fff76ca-082a-4201-a5b2-f032076f3ff0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25517-Global7446\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6874\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6874\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.137.61\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"24999918-1a24-409c-96e1-ca57870dfe98\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"92124ec6-30ae-4398-a8d4-8c3ca8fc2f66\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.136.27\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"431c5028-3e6f-48e5-a22a-85b1df6ff155\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5136b3f7-5de7-4343-9706-ca6fa53261b0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.108.115.47\",\r\n \"peerSessionIPv4Address\": \"206.108.115.21\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1bd51316-1259-4729-b03f-e6940c1110d4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:38:1:0:a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"c624ccd1-568d-41f4-9ed1-e48b36401f48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.57\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"bc009cbe-ed12-4b3b-99ef-a033ac82aa80\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::57\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"caf72971-c457-4aad-ae2f-fc43158829ac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.58\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ec58692d-9f3b-4981-a94a-8bc84dbf3571\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::58\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3d137bc4-08d6-428c-919c-47c6adfbec0a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global4647\"\r\n }\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Chicago_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Chicago_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"91.104.97.0/31\",\r\n \"sessionPrefixV6\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"91.104.97.1\",\r\n \"microsoftSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee01\",\r\n \"peerSessionIPv4Address\": \"91.104.97.0\",\r\n \"peerSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10012,\r\n \"maxPrefixesAdvertisedV6\": 1757,\r\n \"md5AuthenticationKey\": \"5163206124f87c80eed8bad3ba6c423c\"\r\n },\r\n \"connectionIdentifier\": \"12d64126-3092-4394-a288-b41d637083ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51940-Global4386\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51940\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection6364\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6364\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"082f560c-9f24-405a-be63-3384abf57d2f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"664a4e12-906a-4538-88d0-3153815221f7\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41580-Global4786\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41580\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection941\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection941\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b2b250d6-7b3a-4533-a05f-a860b995cb05\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f3411d09-9adc-4a9c-8feb-075f7bc36cb5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"df1d303c-3f22-498c-badd-dd186b16bab8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ae8eca97-a508-41fc-8086-433fdb86a2f8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/109-Global6698\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS109_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS109_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.112\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"53105795-6cf2-4250-b887-117f79e4885b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.113\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8942623-7b94-4b2a-abac-e2f7d9796761\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"dde4aac0-63d0-44b5-86c9-caef39af6663\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"84d6aed5-5200-4bf3-8256-2e5143b6c985\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.160\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"429d2b15-bec7-4ac3-ad95-afdc16c664f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8cbeb370-ad75-4223-be63-0aeb8488f5f8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9ed05631-57c4-4b39-85fa-939fdb0bbac9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b4332c58-db74-4a76-a65c-917767f819e5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e3df46c-f2f5-4b79-834f-bdde368dff04\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b5b23fa2-3026-4e64-9e9e-2e3e497d618c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"2b98dd15-3389-4692-bc09-ce148d87793e\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/714-Global3147\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS714_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS714_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3388,\r\n \"maxPrefixesAdvertisedV6\": 443,\r\n \"md5AuthenticationKey\": \"0fd8210422aa88edc0d6f7c6f8efdd9e\"\r\n },\r\n \"connectionIdentifier\": \"2438d80a-f2a1-4909-8005-f1bc83fb74ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7557\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7557\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.17\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8bbbfe9f-9d97-456a-9b27-cb98b416cbb1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"090ee743-b122-46eb-8d25-840001b725f6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.65\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"67b8a9ae-de2c-4d97-965e-84eff3255406\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"26097e38-4998-42e0-b214-9e9df2bff652\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9194\"\r\n }\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Dallas_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Dallas_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredAsns/ps2973?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZEFzbnMvcHMyOTczP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredAsns/ps491?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRBc25zL3BzNDkxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cef70ac5-7129-4f03-8eb7-d16ff6ca6819" + "e4eb4cb4-cc47-4521-b7d5-e4bde3230eef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -87,16 +87,16 @@ "no-cache" ], "x-ms-request-id": [ - "f3f0b002-6727-426b-b06d-7a63e330cc39" + "6259ce95-e251-4a47-a549-f1076a946501" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14999" ], "x-ms-correlation-request-id": [ - "b4181839-8a18-433c-a8d9-d7e00e42120f" + "7882b4a1-6d5d-46b1-b3b3-39b414b95051" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T220618Z:b4181839-8a18-433c-a8d9-d7e00e42120f" + "NORTHEUROPE:20210409T081106Z:7882b4a1-6d5d-46b1-b3b3-39b414b95051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,10 +105,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:06:17 GMT" + "Fri, 09 Apr 2021 08:11:06 GMT" ], "Content-Length": [ - "68" + "91" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,26 +117,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/peering1882/registeredAsns?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BlZXJpbmcxODgyL3JlZ2lzdGVyZWRBc25zP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/peering1368/registeredAsns?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9wZWVyaW5nMTM2OC9yZWdpc3RlcmVkQXNucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcfee383-ad00-4710-b622-4cb2f924811e" + "678ae02b-5777-4a07-80f8-57c23c61be23" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -150,13 +150,13 @@ "gateway" ], "x-ms-request-id": [ - "c3104765-61e9-4bbc-a6be-57316309756a" + "621338c0-0b86-4b91-951e-a42eec0281d9" ], "x-ms-correlation-request-id": [ - "c3104765-61e9-4bbc-a6be-57316309756a" + "621338c0-0b86-4b91-951e-a42eec0281d9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T220619Z:c3104765-61e9-4bbc-a6be-57316309756a" + "NORTHEUROPE:20210409T081106Z:621338c0-0b86-4b91-951e-a42eec0281d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -165,7 +165,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:06:18 GMT" + "Fri, 09 Apr 2021 08:11:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -174,29 +174,29 @@ "-1" ], "Content-Length": [ - "232" + "221" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Peering/peerings/peering1882' under resource group 'AS15169_Atlanta_Direct' 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.Peering/peerings/peering1368' under resource group 'testCarrier' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/peering1882/registeredAsns/ps2973?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BlZXJpbmcxODgyL3JlZ2lzdGVyZWRBc25zL3BzMjk3Mz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/peering1368/registeredAsns/ps491?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9wZWVyaW5nMTM2OC9yZWdpc3RlcmVkQXNucy9wczQ5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25b2a101-cee8-4b3c-8a6b-4018d8d278a9" + "0938767c-7151-46be-9c35-5b3973c1de44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -210,13 +210,13 @@ "gateway" ], "x-ms-request-id": [ - "7a3f0f7f-91dc-46f5-ab9e-4871115714eb" + "71b3adab-9db6-40d5-8669-230c23972da1" ], "x-ms-correlation-request-id": [ - "7a3f0f7f-91dc-46f5-ab9e-4871115714eb" + "71b3adab-9db6-40d5-8669-230c23972da1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T220619Z:7a3f0f7f-91dc-46f5-ab9e-4871115714eb" + "NORTHEUROPE:20210409T081107Z:71b3adab-9db6-40d5-8669-230c23972da1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,7 +225,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:06:18 GMT" + "Fri, 09 Apr 2021 08:11:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -234,17 +234,17 @@ "-1" ], "Content-Length": [ - "232" + "221" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Peering/peerings/peering1882' under resource group 'AS15169_Atlanta_Direct' 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.Peering/peerings/peering1368' under resource group 'testCarrier' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": { "Test-GetRegisteredAsn": [ - "ps2973", - "peering1882" + "ps491", + "peering1368" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredPrefix/TestCreateRegisteredPrefix.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredPrefix/TestCreateRegisteredPrefix.json index ac9094719f38..205ad76402e7 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredPrefix/TestCreateRegisteredPrefix.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredPrefix/TestCreateRegisteredPrefix.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f3c8144-51e3-46aa-b8a6-373bb03e4d9c" + "2bf93dbd-0783-48e1-8bcf-8f899932f942" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "d12b93fc-ab06-4881-b718-ffd8113dafee" + "d67fed86-f4eb-419a-9d7e-2ad7b14f99e8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "67ebaecd-3c0b-465f-b1f0-630f351c8a7d" + "1eaa67f2-3d46-4f6e-8874-24bb02b766ad" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222117Z:67ebaecd-3c0b-465f-b1f0-630f351c8a7d" + "NORTHEUROPE:20210409T075843Z:1eaa67f2-3d46-4f6e-8874-24bb02b766ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:16 GMT" + "Fri, 09 Apr 2021 07:58:43 GMT" ], "Content-Length": [ - "106731" + "402977" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"eTag\": \"1a7307ac-8785-4afa-b15e-3053eba6430a\",\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"0dbcf12a-a30d-4531-af2b-b560d88df0db\",\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"4ec2bbb9-617f-45ea-9ea8-fc1fe9845807\",\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"99b647e7-3be4-4186-8801-bc6c804863c5\",\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"273ec016-cf39-4313-ba2a-0e51ee87902b\",\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"eTag\": \"d11ef80b-25cb-4ea0-81b5-5f90646e9774\",\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"eTag\": \"d726b703-5b65-4789-8ddb-3821435e2da0\",\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"eTag\": \"b515a998-0004-42fd-a328-41426bd23b60\",\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"eTag\": \"2eeb972b-9c7e-4a63-b3e6-33da7d9d4c9e\",\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"2dee5bea-fd7c-4236-8976-5843e679b1d6\",\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"e1043c0b-a467-44b4-bec9-9261c6d62eb8\",\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b42e77ee-15ca-461c-85ca-5615a81302f4\",\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"1178ef0f-3372-42f5-891d-b811a356f5dc\",\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b097a98b-47d5-42eb-8159-026f5f90b363\",\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.83.157.0/31\",\r\n \"sessionPrefixV6\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"144.83.157.1\",\r\n \"microsoftSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a201\",\r\n \"peerSessionIPv4Address\": \"144.83.157.0\",\r\n \"peerSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3670,\r\n \"maxPrefixesAdvertisedV6\": 633,\r\n \"md5AuthenticationKey\": \"f79cc7d1fc7a955029fa7d655672fec0\"\r\n },\r\n \"connectionIdentifier\": \"c23d0784-d60f-45e5-822b-9a4712926e7c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11364-Global7480\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_11364\": \"value1\"\r\n },\r\n \"eTag\": \"7bdea41d-613e-40d3-9d70-c0b9356bf93a\",\r\n \"name\": \"DirectPipeConnection2029\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2029\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"eTag\": \"0b4f1b38-48c2-4553-a6cc-6f40d339dede\",\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"eTag\": \"3519eb65-e58e-4288-8af1-46b77bcc4b6b\",\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"c98788d8-51bf-4f77-b014-ae544238e6c3\",\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"3f14d313-16e7-495e-a8dd-56fbf26098a2\",\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"eTag\": \"9157828a-6376-423f-a884-1ce5b8ccf3e4\",\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b9bc5839-449f-476c-a2bd-01917acb1f65\",\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.241.142.0/31\",\r\n \"sessionPrefixV6\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"185.241.142.1\",\r\n \"microsoftSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1401\",\r\n \"peerSessionIPv4Address\": \"185.241.142.0\",\r\n \"peerSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10251,\r\n \"maxPrefixesAdvertisedV6\": 1330,\r\n \"md5AuthenticationKey\": \"7780370c8643382d2eb160d97edd5f1c\"\r\n },\r\n \"connectionIdentifier\": \"97d2a745-4212-4a7d-9a76-b0dd9fb1cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19424-Global6892\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19424\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"3b14a622-f4f5-4ba8-9956-3520fd6793ba\",\r\n \"name\": \"DirectOneConnection1899\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1899\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"cc8d23e3-10fb-4780-9096-ea10f96dae6a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"142.228.109.0/31\",\r\n \"sessionPrefixV6\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"142.228.109.1\",\r\n \"microsoftSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a01\",\r\n \"peerSessionIPv4Address\": \"142.228.109.0\",\r\n \"peerSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"237cfc2a-ad06-4253-af56-bce385789d35\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57976-Global9981\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57976\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"1560b3aa-4e0d-41ef-8b89-809d647f9fe3\",\r\n \"name\": \"DirectOneConnection9425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9425\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1354,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"eb4a5668-bd19-4a93-84b0-77284be0d425\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"6af5f30a-9282-489b-96be-cf207d4f0615\",\r\n \"name\": \"test1\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/test1\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"d7bfa4d1-72ec-4ac3-8fc2-651a713d95e5\",\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 100004,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d592b65d-45eb-4494-954e-9abbf2cf2081\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"TestProductionReadyFacilityPeering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.130\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"80051dee-4f1c-43b6-97dc-2ac36eb66bdd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f411576e-9678-4f8c-9bb9-182e438e894d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.180\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Active\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4d57976-4803-43bb-8741-47c7d122f531\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Active\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"362a98a2-ea1a-4cfa-8e0a-ff8fd6caa5b9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global8141\"\r\n }\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Bucharest_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Bucharest_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.218/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b10/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.219\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b12\",\r\n \"peerSessionIPv4Address\": \"104.44.197.218\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b11\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.216/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b0c/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.217\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0e\",\r\n \"peerSessionIPv4Address\": \"104.44.197.216\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b0d\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.214/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b08/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.215\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0a\",\r\n \"peerSessionIPv4Address\": \"104.44.197.214\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b09\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.212/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b04/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.213\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b06\",\r\n \"peerSessionIPv4Address\": \"104.44.197.212\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b05\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"423bc362-bd7c-41d2-b402-5244ff93fa2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a352069e-0f89-4c4c-892c-04968a125395\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"4d89564e-855e-437f-aa06-e12a85eb89ac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c06111ff-0542-441e-922f-c8af28d2190c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"56e866cb-484e-44b4-93b5-d56c5d497b54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"dc8f1805-bf5b-4f22-8f55-470fba67ea0a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a352069e-0f89-4c4c-892c-04968a125395\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a352069e-0f89-4c4c-892c-04968a125395\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c06111ff-0542-441e-922f-c8af28d2190c\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_c06111ff-0542-441e-922f-c8af28d2190c\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS9116_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS9116_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"241.184.55.0/31\",\r\n \"sessionPrefixV6\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"241.184.55.1\",\r\n \"microsoftSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac01\",\r\n \"peerSessionIPv4Address\": \"241.184.55.0\",\r\n \"peerSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10794,\r\n \"maxPrefixesAdvertisedV6\": 1430,\r\n \"md5AuthenticationKey\": \"68918b1b5b130694aec6dcb3432f7b3a\"\r\n },\r\n \"connectionIdentifier\": \"7f446685-9191-41b2-be9c-7f56c699efe2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55253-Global5765\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_55253\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9950\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9950\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.196.88.0/31\",\r\n \"sessionPrefixV6\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"29.196.88.1\",\r\n \"microsoftSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8601\",\r\n \"peerSessionIPv4Address\": \"29.196.88.0\",\r\n \"peerSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"660a83b4-2f56-430e-b885-c3464acfc4b9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"6.7.47.0/31\",\r\n \"sessionPrefixV6\": \"607:2f23:e383:ba42:4b63:950:4d25:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"6.7.47.1\",\r\n \"microsoftSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e501\",\r\n \"peerSessionIPv4Address\": \"6.7.47.0\",\r\n \"peerSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"e86e3109-b558-43cb-ab82-1e27dcce4459\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/50896-Global8957\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_50896\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1538\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.54.20.0/31\",\r\n \"sessionPrefixV6\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"170.54.20.1\",\r\n \"microsoftSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6901\",\r\n \"peerSessionIPv4Address\": \"170.54.20.0\",\r\n \"peerSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"8b253073-c71b-480d-bd96-e919f594fc04\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.136.117.0/31\",\r\n \"sessionPrefixV6\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"203.136.117.1\",\r\n \"microsoftSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a201\",\r\n \"peerSessionIPv4Address\": \"203.136.117.0\",\r\n \"peerSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"80472de1-e0af-479e-855b-3d800af32726\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2489-Global3700\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2489\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1959\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1959\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.210.52.0/31\",\r\n \"sessionPrefixV6\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"78.210.52.1\",\r\n \"microsoftSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6901\",\r\n \"peerSessionIPv4Address\": \"78.210.52.0\",\r\n \"peerSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"78b1382e-c5be-4f6c-8dc3-a6d920a5dc22\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"60.241.107.0/31\",\r\n \"sessionPrefixV6\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"60.241.107.1\",\r\n \"microsoftSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9901\",\r\n \"peerSessionIPv4Address\": \"60.241.107.0\",\r\n \"peerSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"eab77b83-f1f0-4348-914c-3c2287891cf5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38128-Global3805\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38128\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8137\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8137\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"a5ff08de-7ec0-4eb7-afd7-ca2f7fe95194\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"d0e178ac-f585-4bf3-bffb-4ec351be92d1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22815-Global919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22815\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8728\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.83.157.0/31\",\r\n \"sessionPrefixV6\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"144.83.157.1\",\r\n \"microsoftSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a201\",\r\n \"peerSessionIPv4Address\": \"144.83.157.0\",\r\n \"peerSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3670,\r\n \"maxPrefixesAdvertisedV6\": 633,\r\n \"md5AuthenticationKey\": \"f79cc7d1fc7a955029fa7d655672fec0\"\r\n },\r\n \"connectionIdentifier\": \"c23d0784-d60f-45e5-822b-9a4712926e7c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11364-Global7480\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_11364\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2029\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2029\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"45.127.211.0/31\",\r\n \"sessionPrefixV6\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"45.127.211.1\",\r\n \"microsoftSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3001\",\r\n \"peerSessionIPv4Address\": \"45.127.211.0\",\r\n \"peerSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3752,\r\n \"maxPrefixesAdvertisedV6\": 1476,\r\n \"md5AuthenticationKey\": \"1d7912808f2b7701e878d5db7248b75c\"\r\n },\r\n \"connectionIdentifier\": \"0d816d82-f5a3-4240-961b-230cf135d4ab\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11737-Global8819\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_11737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2500\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2500\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1408,\r\n \"maxPrefixesAdvertisedV6\": 832,\r\n \"md5AuthenticationKey\": \"ce6640d9404bc472ff6538bf66bc4888\"\r\n },\r\n \"connectionIdentifier\": \"00812dcc-15a1-46f0-b4fd-1ee466ccc231\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64098-Global3338\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_64098\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2881\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2881\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"118.39.68.0/31\",\r\n \"sessionPrefixV6\": \"7627:4409:7884:e034:e6aa:335b:9335:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"118.39.68.1\",\r\n \"microsoftSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9901\",\r\n \"peerSessionIPv4Address\": \"118.39.68.0\",\r\n \"peerSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18413,\r\n \"maxPrefixesAdvertisedV6\": 554,\r\n \"md5AuthenticationKey\": \"28c359f10c907ad3adc52539a996703a\"\r\n },\r\n \"connectionIdentifier\": \"75bc6a0d-2d96-45fe-9628-48b4a37dd80c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15592-Global9066\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_15592\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection468\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection468\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.123.118.0/31\",\r\n \"sessionPrefixV6\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"29.123.118.1\",\r\n \"microsoftSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4401\",\r\n \"peerSessionIPv4Address\": \"29.123.118.0\",\r\n \"peerSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19531,\r\n \"maxPrefixesAdvertisedV6\": 1180,\r\n \"md5AuthenticationKey\": \"f1a078d353e513b9a4eba41e34924dbf\"\r\n },\r\n \"connectionIdentifier\": \"13c6fcb9-4b4a-42c7-8b36-a2745ab460e6\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53691-Global3806\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_53691\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6020\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6020\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db47cdc1-7407-42c5-a134-3674452d656e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce7825b9-289e-4bc8-b1b5-99de54e8e582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4351bf08-b728-4c55-8847-00c4391d1b23\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a260272d-520f-4a4a-a8a6-0fff0f1e85d5\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global6072\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.157.57.0/31\",\r\n \"sessionPrefixV6\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"149.157.57.1\",\r\n \"microsoftSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee01\",\r\n \"peerSessionIPv4Address\": \"149.157.57.0\",\r\n \"peerSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"d588ae8f-ddc1-4d41-afe7-bdc71385bb17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"113.147.198.0/31\",\r\n \"sessionPrefixV6\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"113.147.198.1\",\r\n \"microsoftSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b01\",\r\n \"peerSessionIPv4Address\": \"113.147.198.0\",\r\n \"peerSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"8ec4cbaa-d47d-4ec4-8c4c-b4ccdd58d3ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47528-Global3377\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_47528\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection865\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection865\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"569ae825-ea67-452e-a49d-32514bb56251\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"7c96d251-9cfd-427e-90ef-f2820d85f6a3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"0ef62088-01a0-4565-9bc1-387553444c7b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"f806e838-2d22-4eb8-a866-85d79029cc5d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"487c0fc7-721a-44b1-869d-b9f23ee8ccb4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"fd74ac6a-ec60-4fc1-9385-b9fa721d04f3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"1984ea5e-8c72-43bf-8d4c-df005dfde027\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"065696ba-18c9-4485-926c-d4a5a120d914\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33348-Global4010\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33348\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS5732\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS5732\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.201.146.0/31\",\r\n \"sessionPrefixV6\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"175.201.146.1\",\r\n \"microsoftSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f701\",\r\n \"peerSessionIPv4Address\": \"175.201.146.0\",\r\n \"peerSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7884,\r\n \"maxPrefixesAdvertisedV6\": 1723,\r\n \"md5AuthenticationKey\": \"2fb12e8bdbb38a0bf40073a5127448be\"\r\n },\r\n \"connectionIdentifier\": \"a8f21a11-4f00-4662-b717-4b5e9d9c2827\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22267-Global9836\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22267\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4210\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4210\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16431,\r\n \"maxPrefixesAdvertisedV6\": 1391,\r\n \"md5AuthenticationKey\": \"4e29939390334ed41d3627ec11b9a89b\"\r\n },\r\n \"connectionIdentifier\": \"89e132fc-770d-47bd-8717-6b60e962a382\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34893-Global3365\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34893\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3927\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3927\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.193.205.0/31\",\r\n \"sessionPrefixV6\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"147.193.205.1\",\r\n \"microsoftSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a01\",\r\n \"peerSessionIPv4Address\": \"147.193.205.0\",\r\n \"peerSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1095,\r\n \"maxPrefixesAdvertisedV6\": 180,\r\n \"md5AuthenticationKey\": \"982fcaab1e2f365731f6ebefaf7cab66\"\r\n },\r\n \"connectionIdentifier\": \"5c050611-8122-4e93-9044-32b95dc6b006\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16734-Global9075\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_16734\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7969\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"6dc4a1ed-8ac6-49ba-a113-f8a6e49972a0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"386abe6f-68c7-4e56-bcdc-ba0ccb2aa15f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60646-Global7216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60646\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8373\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8373\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6825,\r\n \"maxPrefixesAdvertisedV6\": 411,\r\n \"md5AuthenticationKey\": \"96e1229f1a5ac0c2e4e8d0f08aca2d9e\"\r\n },\r\n \"connectionIdentifier\": \"0a833152-ecb1-40f9-a222-109734ef55a8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4279-Global6784\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_4279\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5996\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5996\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9533,\r\n \"maxPrefixesAdvertisedV6\": 1070,\r\n \"md5AuthenticationKey\": \"5c6596342ec124b2af63e7a0587fd778\"\r\n },\r\n \"connectionIdentifier\": \"a15d518d-4502-4c23-84d2-22f23db31de1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60935-Global5716\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60935\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection771\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection771\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16829,\r\n \"maxPrefixesAdvertisedV6\": 1913,\r\n \"md5AuthenticationKey\": \"e6978716baef8643586d9c5550bb145f\"\r\n },\r\n \"connectionIdentifier\": \"fc7815dd-9810-496b-b22a-3932d60f3ea3\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3398-Global3790\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3398\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5312\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5312\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"1.188.147.0/31\",\r\n \"sessionPrefixV6\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"1.188.147.1\",\r\n \"microsoftSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9801\",\r\n \"peerSessionIPv4Address\": \"1.188.147.0\",\r\n \"peerSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10933,\r\n \"maxPrefixesAdvertisedV6\": 1416,\r\n \"md5AuthenticationKey\": \"f5c4fdbbf67bf39ea7f672819443a8bc\"\r\n },\r\n \"connectionIdentifier\": \"5bcd8d64-0b61-4e5a-8263-8d4ea21a9110\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32686-Global3930\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32686\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8205\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8205\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"bd3cc92e-f1d3-4c92-bb09-010671084cd8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.160.231.0/31\",\r\n \"sessionPrefixV6\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"157.160.231.1\",\r\n \"microsoftSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e501\",\r\n \"peerSessionIPv4Address\": \"157.160.231.0\",\r\n \"peerSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"7d1c5297-f009-408e-9b29-c57421c2f8c1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/17252-Global7140\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_17252\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2040\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2040\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"5083537f-b6a8-4e4e-be82-ba56e525e655\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"4900f076-6bbb-4973-abc2-49171d221c9b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"30295231-964c-4aa0-94eb-21b672c07c19\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"efec4548-27f5-43e3-b379-710c6687cd89\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"c6e4ef27-303f-4328-9fe9-744ad7285984\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"adbc9d4d-34a5-4334-9e86-a8ee405ada48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"fe8b330b-647f-43cf-8ed7-1767e46daf95\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"f5fdd891-5b61-4f8f-ad88-2192c0fae0c7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19385-Global2700\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19385\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS9774\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS9774\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"767a25fb-482a-4de8-90c7-44f50e6a0590\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ccc44517-8c4a-4359-a7f3-401fa4d5d6b8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"9aaa78da-ef35-4d0e-bbb0-7da46aaf79ea\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"c50c466a-c260-4cab-b46a-709e840f73c5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"43c49727-d3fe-4d00-872d-7ad1fabc927b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ed89d4a6-f609-4838-b7b1-bedace0e58e8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"04eb48ba-3156-4de3-9e59-56f58b94ef65\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"4b30fc13-0557-45ed-af7b-428ef64e9a1b\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38121-Global6800\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38121\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b9c2be73-348e-4bc6-adae-1f429fe50fcc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"aec70c2a-1911-47a6-9363-1f8cae7c8db1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b153ba82-7ef1-470b-a57d-66a0b7e6f09d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3cb306cc-afbf-4ac9-9ce7-192499ee4003\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/293-Global8506\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS293_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS293_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.20.46.0/31\",\r\n \"sessionPrefixV6\": \"b414:2e70:710b:b870:e704:7013:1c33:4300/127\",\r\n \"microsoftSessionIPv4Address\": \"180.20.46.1\",\r\n \"microsoftSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4301\",\r\n \"peerSessionIPv4Address\": \"180.20.46.0\",\r\n \"peerSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7183,\r\n \"maxPrefixesAdvertisedV6\": 1576,\r\n \"md5AuthenticationKey\": \"7a24b847242eb9837a215004eabd4fe2\"\r\n },\r\n \"connectionIdentifier\": \"a7fae4b1-3ce2-441f-94e4-c2f53e71d5f8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5381-Global1967\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_5381\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection53\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection53\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.83.122.0/31\",\r\n \"sessionPrefixV6\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"19.83.122.1\",\r\n \"microsoftSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2701\",\r\n \"peerSessionIPv4Address\": \"19.83.122.0\",\r\n \"peerSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"7ba251d8-def4-4f26-b1b3-ff2961ce4c55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"201.99.39.0/31\",\r\n \"sessionPrefixV6\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00/127\",\r\n \"microsoftSessionIPv4Address\": \"201.99.39.1\",\r\n \"microsoftSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c01\",\r\n \"peerSessionIPv4Address\": \"201.99.39.0\",\r\n \"peerSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"116d22c4-06bf-4f60-8bfc-4566b2d1082a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62697-Global1922\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62697\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9700\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9700\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"30330c9c-8530-4382-aa73-bc8ee4096425\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"fcfcc7a8-5400-444e-90fe-a0dbdb79db73\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"86daab31-826e-4d8f-9c16-50be3c1cc249\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"907f7af9-eaab-4cdc-857d-cb75e9d4ca08\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"6d4d0342-d182-4dde-8d02-15965f98fd3b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"33897291-64e2-47ef-947e-416ec23397f2\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"58ddaf98-0ad8-4130-b876-533f89d4094d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"5ab62206-3e04-4e63-bb97-1945781c830a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46447-Global978\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_46447\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6348\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6348\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"72.62.182.0/31\",\r\n \"sessionPrefixV6\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"72.62.182.1\",\r\n \"microsoftSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db01\",\r\n \"peerSessionIPv4Address\": \"72.62.182.0\",\r\n \"peerSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8532,\r\n \"maxPrefixesAdvertisedV6\": 1402,\r\n \"md5AuthenticationKey\": \"7fadf7587435a401fac69d14b46fbafc\"\r\n },\r\n \"connectionIdentifier\": \"69872a12-8863-442d-a7d1-03cddc56127a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46638-Global2402\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_46638\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection327\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection327\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"26.86.40.0/31\",\r\n \"sessionPrefixV6\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"26.86.40.1\",\r\n \"microsoftSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d01\",\r\n \"peerSessionIPv4Address\": \"26.86.40.0\",\r\n \"peerSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4335,\r\n \"maxPrefixesAdvertisedV6\": 623,\r\n \"md5AuthenticationKey\": \"c72efb13cbf4fb236889a3dd66524266\"\r\n },\r\n \"connectionIdentifier\": \"564b7709-f845-4200-a0f0-4e099965ba52\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42259-Global4439\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_42259\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"7a4e14cb-0f30-4c2f-9d53-6c2cd9fa87a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.144.93.0/31\",\r\n \"sessionPrefixV6\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"101.144.93.1\",\r\n \"microsoftSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a01\",\r\n \"peerSessionIPv4Address\": \"101.144.93.0\",\r\n \"peerSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"1f7f6dea-1cf8-4d73-8e77-3185fbebba82\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41272-Global7358\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_41272\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1911\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1911\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.38.103.0/31\",\r\n \"sessionPrefixV6\": \"f426:6750:a75a:aa50:7935:7317:680b:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"244.38.103.1\",\r\n \"microsoftSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1401\",\r\n \"peerSessionIPv4Address\": \"244.38.103.0\",\r\n \"peerSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1228,\r\n \"maxPrefixesAdvertisedV6\": 1801,\r\n \"md5AuthenticationKey\": \"98d7a206c67f03e59871931988c72eb2\"\r\n },\r\n \"connectionIdentifier\": \"9104cb9b-68ce-4895-8824-6c34a686e6e0\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62737-Global7374\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8360\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8360\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"14.9.222.0/31\",\r\n \"sessionPrefixV6\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"14.9.222.1\",\r\n \"microsoftSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db01\",\r\n \"peerSessionIPv4Address\": \"14.9.222.0\",\r\n \"peerSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"ec084ea0-757b-41d0-9825-eaf547511859\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"978b0b63-f979-4c4b-a4a7-814368d4f93a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/988-Global3898\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_988\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5745\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5745\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17707,\r\n \"maxPrefixesAdvertisedV6\": 480,\r\n \"md5AuthenticationKey\": \"71bbf7232def60205a04721e0f722154\"\r\n },\r\n \"connectionIdentifier\": \"fb9d1483-c466-4e22-a6a1-13c02a1df6ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27822-Global9380\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27822\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9957\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9957\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"132.6.82.0/31\",\r\n \"sessionPrefixV6\": \"8406:526b:1259:855e:deef:490c:23fa:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"132.6.82.1\",\r\n \"microsoftSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6001\",\r\n \"peerSessionIPv4Address\": \"132.6.82.0\",\r\n \"peerSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"ec643b08-9c69-48a8-a2d9-fe8f47685c54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.4.164.0/31\",\r\n \"sessionPrefixV6\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"124.4.164.1\",\r\n \"microsoftSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6901\",\r\n \"peerSessionIPv4Address\": \"124.4.164.0\",\r\n \"peerSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"daed42d1-0547-48ad-a3de-7127f378c862\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4457-Global4768\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4457\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1769\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1769\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"126.41.242.0/31\",\r\n \"sessionPrefixV6\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"126.41.242.1\",\r\n \"microsoftSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f01\",\r\n \"peerSessionIPv4Address\": \"126.41.242.0\",\r\n \"peerSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5168,\r\n \"maxPrefixesAdvertisedV6\": 1008,\r\n \"md5AuthenticationKey\": \"6c26585ffae85cbfdf6aa0daf4320ec9\"\r\n },\r\n \"connectionIdentifier\": \"e66f9263-c367-4da4-ac00-db4cd588e32b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13386-Global6814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_13386\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection81\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection81\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"183.130.94.0/31\",\r\n \"sessionPrefixV6\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"183.130.94.1\",\r\n \"microsoftSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac01\",\r\n \"peerSessionIPv4Address\": \"183.130.94.0\",\r\n \"peerSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1982,\r\n \"maxPrefixesAdvertisedV6\": 498,\r\n \"md5AuthenticationKey\": \"143c0ba4b802d74cc4e3581bb13384aa\"\r\n },\r\n \"connectionIdentifier\": \"7af5b5eb-e09a-4711-8de6-2710741bb1ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27207-Global7473\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27207\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection3103\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection3103\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"26bbec7c-1e28-4ddd-b58d-7bd8f8be5ade\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"6dcb956c-52c6-43db-b127-d31486831e0d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10813-Global3979\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_10813\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7223\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7223\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.231.248.0/31\",\r\n \"sessionPrefixV6\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"24.231.248.1\",\r\n \"microsoftSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b501\",\r\n \"peerSessionIPv4Address\": \"24.231.248.0\",\r\n \"peerSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 715,\r\n \"maxPrefixesAdvertisedV6\": 674,\r\n \"md5AuthenticationKey\": \"4680c8ad29418fedaa8ea1c1eed3f8d3\"\r\n },\r\n \"connectionIdentifier\": \"f4fe9ad5-c7f7-4fce-9b06-c203cc07f661\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4964-Global4917\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4964\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection9603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.93.16.0/31\",\r\n \"sessionPrefixV6\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500/127\",\r\n \"microsoftSessionIPv4Address\": \"180.93.16.1\",\r\n \"microsoftSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8501\",\r\n \"peerSessionIPv4Address\": \"180.93.16.0\",\r\n \"peerSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"13dd1202-c083-42ff-bdb7-cf2c66609336\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"2633f4fa-8ef2-47ef-a337-4a3e2fde1ed8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3845-Global1054\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3845\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3030\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3030\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.33.45.0/31\",\r\n \"sessionPrefixV6\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"98.33.45.1\",\r\n \"microsoftSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a201\",\r\n \"peerSessionIPv4Address\": \"98.33.45.0\",\r\n \"peerSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3235,\r\n \"maxPrefixesAdvertisedV6\": 660,\r\n \"md5AuthenticationKey\": \"dd1ad81da0c43262138fdd45621b4fce\"\r\n },\r\n \"connectionIdentifier\": \"a5d263ad-f207-4370-b8fa-c41d4e4bfb0b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23912-Global6634\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_23912\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8074\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"68.244.26.0/31\",\r\n \"sessionPrefixV6\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"68.244.26.1\",\r\n \"microsoftSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f01\",\r\n \"peerSessionIPv4Address\": \"68.244.26.0\",\r\n \"peerSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"02617158-a0a1-4b38-be52-48a82291e52c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.106.15.0/31\",\r\n \"sessionPrefixV6\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"98.106.15.1\",\r\n \"microsoftSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e401\",\r\n \"peerSessionIPv4Address\": \"98.106.15.0\",\r\n \"peerSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"acbc2c96-0514-42f0-bf7e-7e990e3cf3bd\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33594-Global3903\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33594\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9994\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9994\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6be23f2e-4425-4a0c-92aa-078d2dbded09\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6eee85fd-d8b8-4cb6-ad28-331dacb1ffcd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"10f2afe8-a8fa-421c-a2d7-39dc5e69981d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"8f3cf999-01ac-4be8-89d6-7bade57408b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16793-Global5795\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16793\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8169\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17333,\r\n \"maxPrefixesAdvertisedV6\": 1699,\r\n \"md5AuthenticationKey\": \"8e033ac24a0aec29342b9e56a3c3c9da\"\r\n },\r\n \"connectionIdentifier\": \"3faa524b-3c7e-45b9-9730-23c74fcfde89\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global9478\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_29876\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4867\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4867\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"111.110.120.0/31\",\r\n \"sessionPrefixV6\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"111.110.120.1\",\r\n \"microsoftSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e501\",\r\n \"peerSessionIPv4Address\": \"111.110.120.0\",\r\n \"peerSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"2b032bec-573e-497f-90cb-c3bfae1d74f7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.9.187.0/31\",\r\n \"sessionPrefixV6\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"144.9.187.1\",\r\n \"microsoftSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6001\",\r\n \"peerSessionIPv4Address\": \"144.9.187.0\",\r\n \"peerSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"a69dd9bf-f3f2-4c7a-adad-7575a0c2105e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33040-Global7717\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_33040\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3613\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3613\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"195.207.169.0/31\",\r\n \"sessionPrefixV6\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"195.207.169.1\",\r\n \"microsoftSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee01\",\r\n \"peerSessionIPv4Address\": \"195.207.169.0\",\r\n \"peerSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"028d09fe-002a-43ea-a118-2bd1fb68a419\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"577e4919-6972-4483-8ce1-a105db563cf2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56289-Global3276\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56289\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7695\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7695\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.133.234.0/31\",\r\n \"sessionPrefixV6\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"65.133.234.1\",\r\n \"microsoftSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2701\",\r\n \"peerSessionIPv4Address\": \"65.133.234.0\",\r\n \"peerSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8004,\r\n \"maxPrefixesAdvertisedV6\": 355,\r\n \"md5AuthenticationKey\": \"2016403648c38d4be69f5be0e1200f4e\"\r\n },\r\n \"connectionIdentifier\": \"7959b9b5-7649-470d-98e3-6050a86e08b5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36432-Global5808\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_36432\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4733\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4733\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::13\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"e67fb138-6396-45f7-872c-996f0fd36696\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.19\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"5b224d0a-eced-4484-8157-9e4db06cb1f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::20\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"55c7c67d-fa0b-426e-b9a8-014cf30465ab\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.32\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"7894e86c-e880-45f6-acb9-a5b38c4a1b1a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6016-Global4041\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6016\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6696\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6696\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::24\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"d3bf0fca-3a44-4e63-9145-c4f702fb88be\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.36\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"eedebca3-7646-49be-b363-56655bd32bac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::34\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"645a0a4c-78ac-4b70-a5ff-6d6ae9499a63\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"9cccbc68-3666-490b-9244-bb4b9971e172\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59319-Global1353\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_59319\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS484\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS484\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"417870ae-07dd-4dbd-bd9b-c5c6119daa49\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"351effd8-21d4-43d5-9110-d45ffa3368dc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"7204f4b4-8c51-4b4a-8348-f8efe48e18ce\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"3aab6d7a-58b9-4e0b-8a25-7d2952980baf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"32e25349-19b5-4a87-b3d5-0e76f604fed9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"0dd98a7b-8507-479b-b25e-35ba9353c213\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"356ba959-f072-421c-9f3e-8534e8deda18\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"cf96536c-f94b-40e7-adf4-aff4a3096dcb\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/49827-Global2680\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_49827\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS422\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS422\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::40\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"2edba332-2d94-4714-b3e4-98acbd7e1442\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.64\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"bd3bb0ae-ac8c-4206-837b-7f94d828a0c0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::14\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"d12296b0-6854-49b3-bccc-18edf1ad241d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.20\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"babba121-4f55-4b76-acb3-6580769bafca\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37437-Global7419\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_37437\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d7e1184f-1ca2-4de4-9144-2d632fd682af\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"71d13747-68ad-4acf-a286-c2e0a36ba82a\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5f1e2606-2eec-4794-a67c-9337322b928d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4e9112e0-9988-4c7a-a8e4-aa57daa742b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/668-Global7167\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS668_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS668_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::16\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"6aa00aad-38ae-4ef8-85f5-bee4afa9cc0c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.22\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"1da43152-38f3-477f-a1eb-a198a0f6ad99\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::46\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"e78ead4d-d690-4269-8cee-7dec78d2e99f\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.70\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"c2efe8fe-577c-4cd8-86a3-e74cc9036656\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53983-Global1983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_53983\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS7750\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS7750\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"67.170.56.0/31\",\r\n \"sessionPrefixV6\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"67.170.56.1\",\r\n \"microsoftSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d01\",\r\n \"peerSessionIPv4Address\": \"67.170.56.0\",\r\n \"peerSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"d5b94538-8d2d-48f3-96e3-2c50dec5ee07\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"fc34f1c2-e760-4414-b093-d83895d3d982\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64208-Global5081\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64208\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Approved\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.241.142.0/31\",\r\n \"sessionPrefixV6\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"185.241.142.1\",\r\n \"microsoftSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1401\",\r\n \"peerSessionIPv4Address\": \"185.241.142.0\",\r\n \"peerSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10251,\r\n \"maxPrefixesAdvertisedV6\": 1330,\r\n \"md5AuthenticationKey\": \"7780370c8643382d2eb160d97edd5f1c\"\r\n },\r\n \"connectionIdentifier\": \"97d2a745-4212-4a7d-9a76-b0dd9fb1cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19424-Global6892\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19424\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1899\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1899\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"19ce6ec4-bf64-46a2-b507-5aec4c40625a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.231.27.0/31\",\r\n \"sessionPrefixV6\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"149.231.27.1\",\r\n \"microsoftSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3001\",\r\n \"peerSessionIPv4Address\": \"149.231.27.0\",\r\n \"peerSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"ce113ff6-1738-4243-afee-b97705152654\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31184-Global450\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31184\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7034\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7034\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"e8e40d30-da85-4f82-9a16-3f586b901ed9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.51.101.0/31\",\r\n \"sessionPrefixV6\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"162.51.101.1\",\r\n \"microsoftSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7301\",\r\n \"peerSessionIPv4Address\": \"162.51.101.0\",\r\n \"peerSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"0b7156cb-2231-468d-a4fd-73bdae981b1a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51635-Global745\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_51635\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7400\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7400\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.141.175.0/31\",\r\n \"sessionPrefixV6\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"93.141.175.1\",\r\n \"microsoftSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1401\",\r\n \"peerSessionIPv4Address\": \"93.141.175.0\",\r\n \"peerSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"e5a7caa5-c4b4-4416-af9c-a3adf2bf5403\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"60839266-ac4c-44bc-b1b8-641df73aea9e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/379-Global6216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_379\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection82\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection82\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"57402fb7-1c9e-4ef6-bb44-4922de3af0a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.27.22.0/31\",\r\n \"sessionPrefixV6\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00/127\",\r\n \"microsoftSessionIPv4Address\": \"78.27.22.1\",\r\n \"microsoftSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab01\",\r\n \"peerSessionIPv4Address\": \"78.27.22.0\",\r\n \"peerSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"daea5573-1fc3-4593-a233-ea7b5f7f1b3f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34380-Global1014\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_34380\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"22.11.140.0/31\",\r\n \"sessionPrefixV6\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100/127\",\r\n \"microsoftSessionIPv4Address\": \"22.11.140.1\",\r\n \"microsoftSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d101\",\r\n \"peerSessionIPv4Address\": \"22.11.140.0\",\r\n \"peerSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"80ea5dc6-4d5d-4df0-93ef-21ddf6cf6c5d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"134.226.190.0/31\",\r\n \"sessionPrefixV6\": \"86e2:be63:76e6:d683:2700:249:b574:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"134.226.190.1\",\r\n \"microsoftSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4401\",\r\n \"peerSessionIPv4Address\": \"134.226.190.0\",\r\n \"peerSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"5330b4ae-5ead-4afb-a49a-f59dad3904a9\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57101-Global2897\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57101\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9371\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9371\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"cc8d23e3-10fb-4780-9096-ea10f96dae6a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"142.228.109.0/31\",\r\n \"sessionPrefixV6\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"142.228.109.1\",\r\n \"microsoftSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a01\",\r\n \"peerSessionIPv4Address\": \"142.228.109.0\",\r\n \"peerSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"237cfc2a-ad06-4253-af56-bce385789d35\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57976-Global9981\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57976\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9425\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.221.133.0/31\",\r\n \"sessionPrefixV6\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"244.221.133.1\",\r\n \"microsoftSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d201\",\r\n \"peerSessionIPv4Address\": \"244.221.133.0\",\r\n \"peerSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"67e045e5-89f3-4144-808b-cccf19494f8b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"131.189.112.0/31\",\r\n \"sessionPrefixV6\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00/127\",\r\n \"microsoftSessionIPv4Address\": \"131.189.112.1\",\r\n \"microsoftSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e01\",\r\n \"peerSessionIPv4Address\": \"131.189.112.0\",\r\n \"peerSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"4ef0bc6f-789e-40fc-9dea-a9aabfa9486f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44308-Global8574\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_44308\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9651\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9651\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"75.99.4.0/31\",\r\n \"sessionPrefixV6\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100/127\",\r\n \"microsoftSessionIPv4Address\": \"75.99.4.1\",\r\n \"microsoftSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:101\",\r\n \"peerSessionIPv4Address\": \"75.99.4.0\",\r\n \"peerSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"6b3ad4ea-6d56-47bc-a6bc-815ba3ddf378\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"231.144.58.0/31\",\r\n \"sessionPrefixV6\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"231.144.58.1\",\r\n \"microsoftSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f01\",\r\n \"peerSessionIPv4Address\": \"231.144.58.0\",\r\n \"peerSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"563b4b12-fab1-435c-a334-058f73fe2a8a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2611-Global9175\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2611\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection496\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection496\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.116.123\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7f883a89-05be-4901-b304-05fc47accca4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"331da049-a2bb-46ac-9c41-5f72906ac7cf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8cb23af-e6df-4108-b88b-dd30ccb9d366\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce0e9470-c3f7-4673-bc03-91ab3d9ad381\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ad2fae6b-272b-4e29-9ac0-2782c2e3c383\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"efe489e4-1f8a-4766-871a-728b018755fe\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global2824\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.190\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"12e7f7c6-2465-4fd0-9440-c216f6c2d582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.191\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5d4f5837-bece-4493-a255-53962484beae\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/72-Global278\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS72_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS72_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"a8447c1e-d341-4da4-88bd-a76a9c0721c7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"cca4122e-a927-4b3d-9afc-a1b9da3ed3a1\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54458-Global2919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_54458\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7564\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7564\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.157.92.0/31\",\r\n \"sessionPrefixV6\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"19.157.92.1\",\r\n \"microsoftSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6901\",\r\n \"peerSessionIPv4Address\": \"19.157.92.0\",\r\n \"peerSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1729,\r\n \"maxPrefixesAdvertisedV6\": 1565,\r\n \"md5AuthenticationKey\": \"704410701a7bff3e044b4f1139e534e5\"\r\n },\r\n \"connectionIdentifier\": \"d743b2bd-bea1-4e34-84f0-13ca2cb562bc\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18517-Global1801\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_18517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8365\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8365\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11782,\r\n \"maxPrefixesAdvertisedV6\": 882,\r\n \"md5AuthenticationKey\": \"a7408a9c0fbcc713ac36dec95b8a5f42\"\r\n },\r\n \"connectionIdentifier\": \"a235ddd3-c4ae-45b5-be43-0211362e2d55\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20222-Global7444\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20222\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8212\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8212\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.120.235.0/31\",\r\n \"sessionPrefixV6\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"147.120.235.1\",\r\n \"microsoftSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c801\",\r\n \"peerSessionIPv4Address\": \"147.120.235.0\",\r\n \"peerSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"ebf6a328-6507-4787-acbb-cd424c9de916\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"36.52.67.0/31\",\r\n \"sessionPrefixV6\": \"2434:4356:60c:de62:834b:9a1e:6143:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"36.52.67.1\",\r\n \"microsoftSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f801\",\r\n \"peerSessionIPv4Address\": \"36.52.67.0\",\r\n \"peerSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"d5ad7303-7003-42fb-b4e0-f7734a1f0f2b\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35617-Global7735\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_35617\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3085\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3085\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"139.191.31.0/31\",\r\n \"sessionPrefixV6\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"139.191.31.1\",\r\n \"microsoftSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1401\",\r\n \"peerSessionIPv4Address\": \"139.191.31.0\",\r\n \"peerSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"71e1fddc-94c4-4b06-8989-a626f0d2c9f4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"108.72.41.0/31\",\r\n \"sessionPrefixV6\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00/127\",\r\n \"microsoftSessionIPv4Address\": \"108.72.41.1\",\r\n \"microsoftSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf01\",\r\n \"peerSessionIPv4Address\": \"108.72.41.0\",\r\n \"peerSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"d6b1f7e0-e93b-437e-9cf2-203e5771c1a6\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56428-Global1253\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56428\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8860\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8860\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.94.237.0/31\",\r\n \"sessionPrefixV6\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.94.237.1\",\r\n \"microsoftSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b01\",\r\n \"peerSessionIPv4Address\": \"55.94.237.0\",\r\n \"peerSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"30202584-a0c5-47ec-aa4d-dafb3beaeb2c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"73.136.152.0/31\",\r\n \"sessionPrefixV6\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"73.136.152.1\",\r\n \"microsoftSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d01\",\r\n \"peerSessionIPv4Address\": \"73.136.152.0\",\r\n \"peerSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"d5ac1b2e-6c36-4339-bf60-a5a70f0c6d61\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5003-Global7139\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_5003\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2105\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2105\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15835,\r\n \"maxPrefixesAdvertisedV6\": 563,\r\n \"md5AuthenticationKey\": \"585c293b6951a96b6bd7554816244c96\"\r\n },\r\n \"connectionIdentifier\": \"f386c9ea-6d73-47c4-aec0-0fa6a5eafe53\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34829-Global4677\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34829\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3952\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3952\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.30.162.0/31\",\r\n \"sessionPrefixV6\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"216.30.162.1\",\r\n \"microsoftSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2701\",\r\n \"peerSessionIPv4Address\": \"216.30.162.0\",\r\n \"peerSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"22686c93-9228-40c3-b9e2-06024cb283bd\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"37.125.37.0/31\",\r\n \"sessionPrefixV6\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"37.125.37.1\",\r\n \"microsoftSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a01\",\r\n \"peerSessionIPv4Address\": \"37.125.37.0\",\r\n \"peerSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"8d56db3a-f0bd-4664-a11d-a1068d8938fe\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16114-Global1956\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16114\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2120\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2120\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"d03f51cb-ca9c-4d3c-a32d-c02c3b03bfaa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"137.154.208.0/31\",\r\n \"sessionPrefixV6\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"137.154.208.1\",\r\n \"microsoftSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee01\",\r\n \"peerSessionIPv4Address\": \"137.154.208.0\",\r\n \"peerSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"b078e6b7-6347-459d-a015-d6b7479cf8c0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28075-Global7814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28075\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"bcdca94b-391e-4168-85f3-9da8b2a41a1f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"34.88.214.0/31\",\r\n \"sessionPrefixV6\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"34.88.214.1\",\r\n \"microsoftSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1401\",\r\n \"peerSessionIPv4Address\": \"34.88.214.0\",\r\n \"peerSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"deeee639-bdb8-4d1b-9d21-bafa19a2fc1c\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45517-Global4066\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_45517\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5710\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5710\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"52.239.189.0/31\",\r\n \"sessionPrefixV6\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"52.239.189.1\",\r\n \"microsoftSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a201\",\r\n \"peerSessionIPv4Address\": \"52.239.189.0\",\r\n \"peerSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7141,\r\n \"maxPrefixesAdvertisedV6\": 138,\r\n \"md5AuthenticationKey\": \"c2f11c2a70edd65d89edcc1273e6bb5f\"\r\n },\r\n \"connectionIdentifier\": \"1e7a420b-dbe2-4692-835c-553b4f72cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42464-Global4232\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_42464\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3894\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3894\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"103.181.171.0/31\",\r\n \"sessionPrefixV6\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"103.181.171.1\",\r\n \"microsoftSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3001\",\r\n \"peerSessionIPv4Address\": \"103.181.171.0\",\r\n \"peerSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"b20f9d94-06ff-4f52-b4fc-3e9708c4648b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"188.205.251.0/31\",\r\n \"sessionPrefixV6\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"188.205.251.1\",\r\n \"microsoftSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f801\",\r\n \"peerSessionIPv4Address\": \"188.205.251.0\",\r\n \"peerSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"a7dda619-8e63-47ae-91ae-09720e73dd7e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55557-Global4646\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_55557\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2299\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2299\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.128.176.0/31\",\r\n \"sessionPrefixV6\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"175.128.176.1\",\r\n \"microsoftSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b501\",\r\n \"peerSessionIPv4Address\": \"175.128.176.0\",\r\n \"peerSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"7a5d2ced-768e-42b2-a5a2-23befcc1ce36\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"23b67039-418c-47d4-8f87-672a1bc98038\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21718-Global4970\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21718\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2820\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2820\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.85.75.0/31\",\r\n \"sessionPrefixV6\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"152.85.75.1\",\r\n \"microsoftSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9801\",\r\n \"peerSessionIPv4Address\": \"152.85.75.0\",\r\n \"peerSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"51306af0-535a-4f93-b982-d6e715948f2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"701bebfc-992b-4e50-bcc1-875bc917a3a0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48055-Global3575\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_48055\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4062\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4062\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.86.5.0/31\",\r\n \"sessionPrefixV6\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300/127\",\r\n \"microsoftSessionIPv4Address\": \"157.86.5.1\",\r\n \"microsoftSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a301\",\r\n \"peerSessionIPv4Address\": \"157.86.5.0\",\r\n \"peerSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"93b6a793-ca54-4bb2-9eb0-d582ca04fde6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"191.133.12.0/31\",\r\n \"sessionPrefixV6\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"191.133.12.1\",\r\n \"microsoftSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a201\",\r\n \"peerSessionIPv4Address\": \"191.133.12.0\",\r\n \"peerSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"66128cbf-88da-4d2d-9433-f23e1ea9ae06\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52421-Global6227\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52421\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4712\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4712\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"159.197.53.0/31\",\r\n \"sessionPrefixV6\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"159.197.53.1\",\r\n \"microsoftSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b01\",\r\n \"peerSessionIPv4Address\": \"159.197.53.0\",\r\n \"peerSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1593,\r\n \"maxPrefixesAdvertisedV6\": 869,\r\n \"md5AuthenticationKey\": \"2016e74020f9b789bc3cabbd5fcfda05\"\r\n },\r\n \"connectionIdentifier\": \"9eaeac01-0444-4c4c-a967-7c87a1c4f55d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25255-Global5963\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25255\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5737\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5737\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"177.165.254.0/31\",\r\n \"sessionPrefixV6\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"177.165.254.1\",\r\n \"microsoftSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db01\",\r\n \"peerSessionIPv4Address\": \"177.165.254.0\",\r\n \"peerSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14754,\r\n \"maxPrefixesAdvertisedV6\": 445,\r\n \"md5AuthenticationKey\": \"55c206ed3830619b6df45fbf51cd09a4\"\r\n },\r\n \"connectionIdentifier\": \"9687a2ef-a4f1-42ba-9ece-1926839cbe8d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6783-Global437\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6783\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6568\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6568\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.167.207.0/31\",\r\n \"sessionPrefixV6\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.167.207.1\",\r\n \"microsoftSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d01\",\r\n \"peerSessionIPv4Address\": \"55.167.207.0\",\r\n \"peerSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"c38241f0-2e4e-4c82-b626-12da88cf7dac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.207.204.0/31\",\r\n \"sessionPrefixV6\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"65.207.204.1\",\r\n \"microsoftSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6901\",\r\n \"peerSessionIPv4Address\": \"65.207.204.0\",\r\n \"peerSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"962ac2c9-47e7-409e-be99-f7cd0c2eeb2a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32837-Global5224\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32837\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9736\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9736\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17424,\r\n \"maxPrefixesAdvertisedV6\": 665,\r\n \"md5AuthenticationKey\": \"6d7041094f7a46e95e55b5d84877a8bb\"\r\n },\r\n \"connectionIdentifier\": \"ec0ac197-a882-4634-88e3-88eeb085ac50\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2247-Global6056\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.236.50.0/31\",\r\n \"sessionPrefixV6\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"170.236.50.1\",\r\n \"microsoftSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2701\",\r\n \"peerSessionIPv4Address\": \"170.236.50.0\",\r\n \"peerSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"6cf7cf6c-5677-4c91-b089-ce631eda55e8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"62.96.156.0/31\",\r\n \"sessionPrefixV6\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100/127\",\r\n \"microsoftSessionIPv4Address\": \"62.96.156.1\",\r\n \"microsoftSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:101\",\r\n \"peerSessionIPv4Address\": \"62.96.156.0\",\r\n \"peerSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"5fff76ca-082a-4201-a5b2-f032076f3ff0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25517-Global7446\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6874\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6874\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.137.61\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"24999918-1a24-409c-96e1-ca57870dfe98\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"92124ec6-30ae-4398-a8d4-8c3ca8fc2f66\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.136.27\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"431c5028-3e6f-48e5-a22a-85b1df6ff155\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5136b3f7-5de7-4343-9706-ca6fa53261b0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.108.115.47\",\r\n \"peerSessionIPv4Address\": \"206.108.115.21\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1bd51316-1259-4729-b03f-e6940c1110d4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:38:1:0:a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"c624ccd1-568d-41f4-9ed1-e48b36401f48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.57\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"bc009cbe-ed12-4b3b-99ef-a033ac82aa80\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::57\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"caf72971-c457-4aad-ae2f-fc43158829ac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.58\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ec58692d-9f3b-4981-a94a-8bc84dbf3571\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::58\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3d137bc4-08d6-428c-919c-47c6adfbec0a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global4647\"\r\n }\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Chicago_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Chicago_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"91.104.97.0/31\",\r\n \"sessionPrefixV6\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"91.104.97.1\",\r\n \"microsoftSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee01\",\r\n \"peerSessionIPv4Address\": \"91.104.97.0\",\r\n \"peerSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10012,\r\n \"maxPrefixesAdvertisedV6\": 1757,\r\n \"md5AuthenticationKey\": \"5163206124f87c80eed8bad3ba6c423c\"\r\n },\r\n \"connectionIdentifier\": \"12d64126-3092-4394-a288-b41d637083ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51940-Global4386\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51940\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection6364\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6364\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"082f560c-9f24-405a-be63-3384abf57d2f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"664a4e12-906a-4538-88d0-3153815221f7\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41580-Global4786\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41580\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection941\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection941\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b2b250d6-7b3a-4533-a05f-a860b995cb05\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f3411d09-9adc-4a9c-8feb-075f7bc36cb5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"df1d303c-3f22-498c-badd-dd186b16bab8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ae8eca97-a508-41fc-8086-433fdb86a2f8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/109-Global6698\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS109_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS109_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.112\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"53105795-6cf2-4250-b887-117f79e4885b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.113\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8942623-7b94-4b2a-abac-e2f7d9796761\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"dde4aac0-63d0-44b5-86c9-caef39af6663\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"84d6aed5-5200-4bf3-8256-2e5143b6c985\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.160\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"429d2b15-bec7-4ac3-ad95-afdc16c664f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8cbeb370-ad75-4223-be63-0aeb8488f5f8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9ed05631-57c4-4b39-85fa-939fdb0bbac9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b4332c58-db74-4a76-a65c-917767f819e5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e3df46c-f2f5-4b79-834f-bdde368dff04\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b5b23fa2-3026-4e64-9e9e-2e3e497d618c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"2b98dd15-3389-4692-bc09-ce148d87793e\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/714-Global3147\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS714_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS714_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3388,\r\n \"maxPrefixesAdvertisedV6\": 443,\r\n \"md5AuthenticationKey\": \"0fd8210422aa88edc0d6f7c6f8efdd9e\"\r\n },\r\n \"connectionIdentifier\": \"2438d80a-f2a1-4909-8005-f1bc83fb74ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7557\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7557\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.17\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8bbbfe9f-9d97-456a-9b27-cb98b416cbb1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"090ee743-b122-46eb-8d25-840001b725f6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.65\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"67b8a9ae-de2c-4d97-965e-84eff3255406\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"26097e38-4998-42e0-b214-9e9df2bff652\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9194\"\r\n }\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Dallas_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Dallas_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredPrefixes/name4959?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZFByZWZpeGVzL25hbWU0OTU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredPrefixes/name6622?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRQcmVmaXhlcy9uYW1lNjYyMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"223.162.54.54/32\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"18.212.192.74/32\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "399ecb2c-68b2-41b7-8170-757585dfaa1d" + "ce15bea4-8c51-47b2-8c40-792d613759b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-request-id": [ - "357de87d-8bf9-4476-bda1-c2882d55f774" + "923bfd8b-ad19-4453-a7f0-1fa81d5eef46" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "f1ae3d13-6c9e-4116-bf54-8115a04fc19f" + "07bac055-3d75-4f89-9528-512c70d923c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222121Z:f1ae3d13-6c9e-4116-bf54-8115a04fc19f" + "NORTHEUROPE:20210409T075845Z:07bac055-3d75-4f89-9528-512c70d923c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:21 GMT" + "Fri, 09 Apr 2021 07:58:44 GMT" ], "Content-Length": [ - "105" + "128" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n }\r\n}", "StatusCode": 405 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredPrefixes/name4959?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZFByZWZpeGVzL25hbWU0OTU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredPrefixes/name6622?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRQcmVmaXhlcy9uYW1lNjYyMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"223.162.54.54/32\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"18.212.192.74/32\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25fe4935-52ed-4255-af08-bbac5407c7e8" + "8cbc8762-799c-41ea-a45a-3677b1b9ae52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-request-id": [ - "5a552186-8262-4330-abbc-556b74523c3f" + "c3a71712-8eb2-4b4c-9e2c-97662dd3d5c8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "1f493afb-5e26-408d-9a64-3b775b546764" + "5bb19d6d-937e-4f7f-a17c-0785b9ff2759" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222121Z:1f493afb-5e26-408d-9a64-3b775b546764" + "NORTHEUROPE:20210409T075846Z:5bb19d6d-937e-4f7f-a17c-0785b9ff2759" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +177,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:21 GMT" + "Fri, 09 Apr 2021 07:58:45 GMT" ], "Content-Length": [ - "105" + "128" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,26 +189,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n }\r\n}", "StatusCode": 405 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredPrefixes/name4959?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZFByZWZpeGVzL25hbWU0OTU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredPrefixes/name6622?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRQcmVmaXhlcy9uYW1lNjYyMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"223.162.54.54/32\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"18.212.192.74/32\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ed9ae856-a96a-4c12-b503-6fa23a75a3a7" + "87f3700c-788b-4f2b-8c52-3d5594e6773a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -225,16 +225,16 @@ "no-cache" ], "x-ms-request-id": [ - "53a83e1c-d67b-479a-b140-94885cbd42ce" + "49da9278-bee8-4682-a0b0-7441b01952b4" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "2a812cc5-e267-44ef-ac00-75bc592e6350" + "79876c62-372b-45c5-b6dd-0591cfb38eee" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222122Z:2a812cc5-e267-44ef-ac00-75bc592e6350" + "NORTHEUROPE:20210409T075846Z:79876c62-372b-45c5-b6dd-0591cfb38eee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,10 +243,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:22 GMT" + "Fri, 09 Apr 2021 07:58:45 GMT" ], "Content-Length": [ - "105" + "128" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,13 +255,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Operation is not supported for this peering type\"\r\n }\r\n}", "StatusCode": 405 } ], "Names": { "Test-CreateRegisteredPrefix": [ - "name4959" + "name6622" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredPrefix/TestGetRegisteredPrefix.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredPrefix/TestGetRegisteredPrefix.json index 3c8e6a750f5f..832d74e0cb7f 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredPrefix/TestGetRegisteredPrefix.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.RegisteredPrefix/TestGetRegisteredPrefix.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5009da7-2b58-4f13-8440-ff07efc69eb9" + "cdf18076-1601-45fb-9aee-82bdd4c50c3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "9887c3bd-0f37-4a94-b292-1ef95b1c3aa8" + "8ef5b32a-2723-4651-a1a1-5f39a6a7afd9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "51499bca-1be1-4fe8-924a-6b563b4d70e3" + "18a15ae6-0aad-4265-af53-c2dbe412fe47" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222146Z:51499bca-1be1-4fe8-924a-6b563b4d70e3" + "NORTHEUROPE:20210409T075930Z:18a15ae6-0aad-4265-af53-c2dbe412fe47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:45 GMT" + "Fri, 09 Apr 2021 07:59:29 GMT" ], "Content-Length": [ - "106731" + "402977" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"eTag\": \"1a7307ac-8785-4afa-b15e-3053eba6430a\",\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"0dbcf12a-a30d-4531-af2b-b560d88df0db\",\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"4ec2bbb9-617f-45ea-9ea8-fc1fe9845807\",\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"99b647e7-3be4-4186-8801-bc6c804863c5\",\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"eTag\": \"273ec016-cf39-4313-ba2a-0e51ee87902b\",\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"eTag\": \"d11ef80b-25cb-4ea0-81b5-5f90646e9774\",\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"eTag\": \"d726b703-5b65-4789-8ddb-3821435e2da0\",\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"eTag\": \"b515a998-0004-42fd-a328-41426bd23b60\",\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"eTag\": \"2eeb972b-9c7e-4a63-b3e6-33da7d9d4c9e\",\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"2dee5bea-fd7c-4236-8976-5843e679b1d6\",\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"e1043c0b-a467-44b4-bec9-9261c6d62eb8\",\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b42e77ee-15ca-461c-85ca-5615a81302f4\",\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"1178ef0f-3372-42f5-891d-b811a356f5dc\",\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b097a98b-47d5-42eb-8159-026f5f90b363\",\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.83.157.0/31\",\r\n \"sessionPrefixV6\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"144.83.157.1\",\r\n \"microsoftSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a201\",\r\n \"peerSessionIPv4Address\": \"144.83.157.0\",\r\n \"peerSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3670,\r\n \"maxPrefixesAdvertisedV6\": 633,\r\n \"md5AuthenticationKey\": \"f79cc7d1fc7a955029fa7d655672fec0\"\r\n },\r\n \"connectionIdentifier\": \"c23d0784-d60f-45e5-822b-9a4712926e7c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11364-Global7480\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_11364\": \"value1\"\r\n },\r\n \"eTag\": \"7bdea41d-613e-40d3-9d70-c0b9356bf93a\",\r\n \"name\": \"DirectPipeConnection2029\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2029\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"eTag\": \"0b4f1b38-48c2-4553-a6cc-6f40d339dede\",\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"eTag\": \"3519eb65-e58e-4288-8af1-46b77bcc4b6b\",\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"c98788d8-51bf-4f77-b014-ae544238e6c3\",\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"3f14d313-16e7-495e-a8dd-56fbf26098a2\",\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"eTag\": \"9157828a-6376-423f-a884-1ce5b8ccf3e4\",\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"b9bc5839-449f-476c-a2bd-01917acb1f65\",\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.241.142.0/31\",\r\n \"sessionPrefixV6\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"185.241.142.1\",\r\n \"microsoftSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1401\",\r\n \"peerSessionIPv4Address\": \"185.241.142.0\",\r\n \"peerSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10251,\r\n \"maxPrefixesAdvertisedV6\": 1330,\r\n \"md5AuthenticationKey\": \"7780370c8643382d2eb160d97edd5f1c\"\r\n },\r\n \"connectionIdentifier\": \"97d2a745-4212-4a7d-9a76-b0dd9fb1cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19424-Global6892\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19424\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"3b14a622-f4f5-4ba8-9956-3520fd6793ba\",\r\n \"name\": \"DirectOneConnection1899\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1899\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"cc8d23e3-10fb-4780-9096-ea10f96dae6a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"None\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"142.228.109.0/31\",\r\n \"sessionPrefixV6\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"142.228.109.1\",\r\n \"microsoftSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a01\",\r\n \"peerSessionIPv4Address\": \"142.228.109.0\",\r\n \"peerSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"237cfc2a-ad06-4253-af56-bce385789d35\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57976-Global9981\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57976\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"1560b3aa-4e0d-41ef-8b89-809d647f9fe3\",\r\n \"name\": \"DirectOneConnection9425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9425\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1354,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"eb4a5668-bd19-4a93-84b0-77284be0d425\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"6af5f30a-9282-489b-96be-cf207d4f0615\",\r\n \"name\": \"test1\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/test1\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestCenturyLink\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"eTag\": \"d7bfa4d1-72ec-4ac3-8fc2-651a713d95e5\",\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 100004,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d592b65d-45eb-4494-954e-9abbf2cf2081\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"TestProductionReadyFacilityPeering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.130\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"80051dee-4f1c-43b6-97dc-2ac36eb66bdd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f411576e-9678-4f8c-9bb9-182e438e894d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.180\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Active\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4d57976-4803-43bb-8741-47c7d122f531\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Active\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"362a98a2-ea1a-4cfa-8e0a-ff8fd6caa5b9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global8141\"\r\n }\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Bucharest_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Bucharest_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.218/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b10/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.219\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b12\",\r\n \"peerSessionIPv4Address\": \"104.44.197.218\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b11\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.216/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b0c/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.217\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0e\",\r\n \"peerSessionIPv4Address\": \"104.44.197.216\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b0d\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.214/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b08/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.215\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0a\",\r\n \"peerSessionIPv4Address\": \"104.44.197.214\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b09\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.212/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b04/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.213\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b06\",\r\n \"peerSessionIPv4Address\": \"104.44.197.212\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b05\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"423bc362-bd7c-41d2-b402-5244ff93fa2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a352069e-0f89-4c4c-892c-04968a125395\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"4d89564e-855e-437f-aa06-e12a85eb89ac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c06111ff-0542-441e-922f-c8af28d2190c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"56e866cb-484e-44b4-93b5-d56c5d497b54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"dc8f1805-bf5b-4f22-8f55-470fba67ea0a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a352069e-0f89-4c4c-892c-04968a125395\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a352069e-0f89-4c4c-892c-04968a125395\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c06111ff-0542-441e-922f-c8af28d2190c\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_c06111ff-0542-441e-922f-c8af28d2190c\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS9116_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS9116_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"241.184.55.0/31\",\r\n \"sessionPrefixV6\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"241.184.55.1\",\r\n \"microsoftSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac01\",\r\n \"peerSessionIPv4Address\": \"241.184.55.0\",\r\n \"peerSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10794,\r\n \"maxPrefixesAdvertisedV6\": 1430,\r\n \"md5AuthenticationKey\": \"68918b1b5b130694aec6dcb3432f7b3a\"\r\n },\r\n \"connectionIdentifier\": \"7f446685-9191-41b2-be9c-7f56c699efe2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55253-Global5765\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_55253\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9950\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9950\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.196.88.0/31\",\r\n \"sessionPrefixV6\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"29.196.88.1\",\r\n \"microsoftSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8601\",\r\n \"peerSessionIPv4Address\": \"29.196.88.0\",\r\n \"peerSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"660a83b4-2f56-430e-b885-c3464acfc4b9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"6.7.47.0/31\",\r\n \"sessionPrefixV6\": \"607:2f23:e383:ba42:4b63:950:4d25:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"6.7.47.1\",\r\n \"microsoftSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e501\",\r\n \"peerSessionIPv4Address\": \"6.7.47.0\",\r\n \"peerSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"e86e3109-b558-43cb-ab82-1e27dcce4459\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/50896-Global8957\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_50896\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1538\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.54.20.0/31\",\r\n \"sessionPrefixV6\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"170.54.20.1\",\r\n \"microsoftSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6901\",\r\n \"peerSessionIPv4Address\": \"170.54.20.0\",\r\n \"peerSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"8b253073-c71b-480d-bd96-e919f594fc04\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.136.117.0/31\",\r\n \"sessionPrefixV6\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"203.136.117.1\",\r\n \"microsoftSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a201\",\r\n \"peerSessionIPv4Address\": \"203.136.117.0\",\r\n \"peerSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"80472de1-e0af-479e-855b-3d800af32726\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2489-Global3700\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2489\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1959\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1959\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.210.52.0/31\",\r\n \"sessionPrefixV6\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"78.210.52.1\",\r\n \"microsoftSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6901\",\r\n \"peerSessionIPv4Address\": \"78.210.52.0\",\r\n \"peerSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"78b1382e-c5be-4f6c-8dc3-a6d920a5dc22\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"60.241.107.0/31\",\r\n \"sessionPrefixV6\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"60.241.107.1\",\r\n \"microsoftSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9901\",\r\n \"peerSessionIPv4Address\": \"60.241.107.0\",\r\n \"peerSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"eab77b83-f1f0-4348-914c-3c2287891cf5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38128-Global3805\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38128\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8137\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8137\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"a5ff08de-7ec0-4eb7-afd7-ca2f7fe95194\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"d0e178ac-f585-4bf3-bffb-4ec351be92d1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22815-Global919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22815\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8728\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.83.157.0/31\",\r\n \"sessionPrefixV6\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"144.83.157.1\",\r\n \"microsoftSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a201\",\r\n \"peerSessionIPv4Address\": \"144.83.157.0\",\r\n \"peerSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3670,\r\n \"maxPrefixesAdvertisedV6\": 633,\r\n \"md5AuthenticationKey\": \"f79cc7d1fc7a955029fa7d655672fec0\"\r\n },\r\n \"connectionIdentifier\": \"c23d0784-d60f-45e5-822b-9a4712926e7c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11364-Global7480\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_11364\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2029\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2029\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"45.127.211.0/31\",\r\n \"sessionPrefixV6\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"45.127.211.1\",\r\n \"microsoftSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3001\",\r\n \"peerSessionIPv4Address\": \"45.127.211.0\",\r\n \"peerSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3752,\r\n \"maxPrefixesAdvertisedV6\": 1476,\r\n \"md5AuthenticationKey\": \"1d7912808f2b7701e878d5db7248b75c\"\r\n },\r\n \"connectionIdentifier\": \"0d816d82-f5a3-4240-961b-230cf135d4ab\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11737-Global8819\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_11737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2500\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2500\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1408,\r\n \"maxPrefixesAdvertisedV6\": 832,\r\n \"md5AuthenticationKey\": \"ce6640d9404bc472ff6538bf66bc4888\"\r\n },\r\n \"connectionIdentifier\": \"00812dcc-15a1-46f0-b4fd-1ee466ccc231\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64098-Global3338\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_64098\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2881\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2881\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"118.39.68.0/31\",\r\n \"sessionPrefixV6\": \"7627:4409:7884:e034:e6aa:335b:9335:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"118.39.68.1\",\r\n \"microsoftSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9901\",\r\n \"peerSessionIPv4Address\": \"118.39.68.0\",\r\n \"peerSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18413,\r\n \"maxPrefixesAdvertisedV6\": 554,\r\n \"md5AuthenticationKey\": \"28c359f10c907ad3adc52539a996703a\"\r\n },\r\n \"connectionIdentifier\": \"75bc6a0d-2d96-45fe-9628-48b4a37dd80c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15592-Global9066\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_15592\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection468\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection468\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.123.118.0/31\",\r\n \"sessionPrefixV6\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"29.123.118.1\",\r\n \"microsoftSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4401\",\r\n \"peerSessionIPv4Address\": \"29.123.118.0\",\r\n \"peerSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19531,\r\n \"maxPrefixesAdvertisedV6\": 1180,\r\n \"md5AuthenticationKey\": \"f1a078d353e513b9a4eba41e34924dbf\"\r\n },\r\n \"connectionIdentifier\": \"13c6fcb9-4b4a-42c7-8b36-a2745ab460e6\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53691-Global3806\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_53691\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6020\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6020\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db47cdc1-7407-42c5-a134-3674452d656e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce7825b9-289e-4bc8-b1b5-99de54e8e582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4351bf08-b728-4c55-8847-00c4391d1b23\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a260272d-520f-4a4a-a8a6-0fff0f1e85d5\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global6072\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.157.57.0/31\",\r\n \"sessionPrefixV6\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"149.157.57.1\",\r\n \"microsoftSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee01\",\r\n \"peerSessionIPv4Address\": \"149.157.57.0\",\r\n \"peerSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"d588ae8f-ddc1-4d41-afe7-bdc71385bb17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"113.147.198.0/31\",\r\n \"sessionPrefixV6\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"113.147.198.1\",\r\n \"microsoftSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b01\",\r\n \"peerSessionIPv4Address\": \"113.147.198.0\",\r\n \"peerSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"8ec4cbaa-d47d-4ec4-8c4c-b4ccdd58d3ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47528-Global3377\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_47528\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection865\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection865\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"569ae825-ea67-452e-a49d-32514bb56251\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"7c96d251-9cfd-427e-90ef-f2820d85f6a3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"0ef62088-01a0-4565-9bc1-387553444c7b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"f806e838-2d22-4eb8-a866-85d79029cc5d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"487c0fc7-721a-44b1-869d-b9f23ee8ccb4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"fd74ac6a-ec60-4fc1-9385-b9fa721d04f3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"1984ea5e-8c72-43bf-8d4c-df005dfde027\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"065696ba-18c9-4485-926c-d4a5a120d914\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33348-Global4010\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33348\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS5732\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS5732\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.201.146.0/31\",\r\n \"sessionPrefixV6\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"175.201.146.1\",\r\n \"microsoftSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f701\",\r\n \"peerSessionIPv4Address\": \"175.201.146.0\",\r\n \"peerSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7884,\r\n \"maxPrefixesAdvertisedV6\": 1723,\r\n \"md5AuthenticationKey\": \"2fb12e8bdbb38a0bf40073a5127448be\"\r\n },\r\n \"connectionIdentifier\": \"a8f21a11-4f00-4662-b717-4b5e9d9c2827\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22267-Global9836\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22267\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4210\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4210\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16431,\r\n \"maxPrefixesAdvertisedV6\": 1391,\r\n \"md5AuthenticationKey\": \"4e29939390334ed41d3627ec11b9a89b\"\r\n },\r\n \"connectionIdentifier\": \"89e132fc-770d-47bd-8717-6b60e962a382\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34893-Global3365\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34893\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3927\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3927\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.193.205.0/31\",\r\n \"sessionPrefixV6\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"147.193.205.1\",\r\n \"microsoftSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a01\",\r\n \"peerSessionIPv4Address\": \"147.193.205.0\",\r\n \"peerSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1095,\r\n \"maxPrefixesAdvertisedV6\": 180,\r\n \"md5AuthenticationKey\": \"982fcaab1e2f365731f6ebefaf7cab66\"\r\n },\r\n \"connectionIdentifier\": \"5c050611-8122-4e93-9044-32b95dc6b006\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16734-Global9075\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_16734\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7969\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"6dc4a1ed-8ac6-49ba-a113-f8a6e49972a0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"386abe6f-68c7-4e56-bcdc-ba0ccb2aa15f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60646-Global7216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60646\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8373\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8373\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6825,\r\n \"maxPrefixesAdvertisedV6\": 411,\r\n \"md5AuthenticationKey\": \"96e1229f1a5ac0c2e4e8d0f08aca2d9e\"\r\n },\r\n \"connectionIdentifier\": \"0a833152-ecb1-40f9-a222-109734ef55a8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4279-Global6784\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_4279\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5996\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5996\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9533,\r\n \"maxPrefixesAdvertisedV6\": 1070,\r\n \"md5AuthenticationKey\": \"5c6596342ec124b2af63e7a0587fd778\"\r\n },\r\n \"connectionIdentifier\": \"a15d518d-4502-4c23-84d2-22f23db31de1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60935-Global5716\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60935\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection771\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection771\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16829,\r\n \"maxPrefixesAdvertisedV6\": 1913,\r\n \"md5AuthenticationKey\": \"e6978716baef8643586d9c5550bb145f\"\r\n },\r\n \"connectionIdentifier\": \"fc7815dd-9810-496b-b22a-3932d60f3ea3\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3398-Global3790\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3398\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5312\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5312\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"1.188.147.0/31\",\r\n \"sessionPrefixV6\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"1.188.147.1\",\r\n \"microsoftSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9801\",\r\n \"peerSessionIPv4Address\": \"1.188.147.0\",\r\n \"peerSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10933,\r\n \"maxPrefixesAdvertisedV6\": 1416,\r\n \"md5AuthenticationKey\": \"f5c4fdbbf67bf39ea7f672819443a8bc\"\r\n },\r\n \"connectionIdentifier\": \"5bcd8d64-0b61-4e5a-8263-8d4ea21a9110\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32686-Global3930\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32686\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8205\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8205\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"bd3cc92e-f1d3-4c92-bb09-010671084cd8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.160.231.0/31\",\r\n \"sessionPrefixV6\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"157.160.231.1\",\r\n \"microsoftSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e501\",\r\n \"peerSessionIPv4Address\": \"157.160.231.0\",\r\n \"peerSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"7d1c5297-f009-408e-9b29-c57421c2f8c1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/17252-Global7140\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_17252\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2040\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2040\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"5083537f-b6a8-4e4e-be82-ba56e525e655\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"4900f076-6bbb-4973-abc2-49171d221c9b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"30295231-964c-4aa0-94eb-21b672c07c19\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"efec4548-27f5-43e3-b379-710c6687cd89\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"c6e4ef27-303f-4328-9fe9-744ad7285984\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"adbc9d4d-34a5-4334-9e86-a8ee405ada48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"fe8b330b-647f-43cf-8ed7-1767e46daf95\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"f5fdd891-5b61-4f8f-ad88-2192c0fae0c7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19385-Global2700\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19385\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS9774\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS9774\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"767a25fb-482a-4de8-90c7-44f50e6a0590\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ccc44517-8c4a-4359-a7f3-401fa4d5d6b8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"9aaa78da-ef35-4d0e-bbb0-7da46aaf79ea\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"c50c466a-c260-4cab-b46a-709e840f73c5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"43c49727-d3fe-4d00-872d-7ad1fabc927b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ed89d4a6-f609-4838-b7b1-bedace0e58e8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"04eb48ba-3156-4de3-9e59-56f58b94ef65\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"4b30fc13-0557-45ed-af7b-428ef64e9a1b\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38121-Global6800\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38121\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b9c2be73-348e-4bc6-adae-1f429fe50fcc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"aec70c2a-1911-47a6-9363-1f8cae7c8db1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b153ba82-7ef1-470b-a57d-66a0b7e6f09d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3cb306cc-afbf-4ac9-9ce7-192499ee4003\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/293-Global8506\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS293_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS293_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.20.46.0/31\",\r\n \"sessionPrefixV6\": \"b414:2e70:710b:b870:e704:7013:1c33:4300/127\",\r\n \"microsoftSessionIPv4Address\": \"180.20.46.1\",\r\n \"microsoftSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4301\",\r\n \"peerSessionIPv4Address\": \"180.20.46.0\",\r\n \"peerSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7183,\r\n \"maxPrefixesAdvertisedV6\": 1576,\r\n \"md5AuthenticationKey\": \"7a24b847242eb9837a215004eabd4fe2\"\r\n },\r\n \"connectionIdentifier\": \"a7fae4b1-3ce2-441f-94e4-c2f53e71d5f8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5381-Global1967\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_5381\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection53\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection53\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.83.122.0/31\",\r\n \"sessionPrefixV6\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"19.83.122.1\",\r\n \"microsoftSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2701\",\r\n \"peerSessionIPv4Address\": \"19.83.122.0\",\r\n \"peerSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"7ba251d8-def4-4f26-b1b3-ff2961ce4c55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"201.99.39.0/31\",\r\n \"sessionPrefixV6\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00/127\",\r\n \"microsoftSessionIPv4Address\": \"201.99.39.1\",\r\n \"microsoftSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c01\",\r\n \"peerSessionIPv4Address\": \"201.99.39.0\",\r\n \"peerSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"116d22c4-06bf-4f60-8bfc-4566b2d1082a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62697-Global1922\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62697\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9700\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9700\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"30330c9c-8530-4382-aa73-bc8ee4096425\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"fcfcc7a8-5400-444e-90fe-a0dbdb79db73\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"86daab31-826e-4d8f-9c16-50be3c1cc249\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"907f7af9-eaab-4cdc-857d-cb75e9d4ca08\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"6d4d0342-d182-4dde-8d02-15965f98fd3b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"33897291-64e2-47ef-947e-416ec23397f2\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"58ddaf98-0ad8-4130-b876-533f89d4094d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"5ab62206-3e04-4e63-bb97-1945781c830a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46447-Global978\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_46447\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6348\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6348\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"72.62.182.0/31\",\r\n \"sessionPrefixV6\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"72.62.182.1\",\r\n \"microsoftSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db01\",\r\n \"peerSessionIPv4Address\": \"72.62.182.0\",\r\n \"peerSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8532,\r\n \"maxPrefixesAdvertisedV6\": 1402,\r\n \"md5AuthenticationKey\": \"7fadf7587435a401fac69d14b46fbafc\"\r\n },\r\n \"connectionIdentifier\": \"69872a12-8863-442d-a7d1-03cddc56127a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46638-Global2402\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_46638\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection327\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection327\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"26.86.40.0/31\",\r\n \"sessionPrefixV6\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"26.86.40.1\",\r\n \"microsoftSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d01\",\r\n \"peerSessionIPv4Address\": \"26.86.40.0\",\r\n \"peerSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4335,\r\n \"maxPrefixesAdvertisedV6\": 623,\r\n \"md5AuthenticationKey\": \"c72efb13cbf4fb236889a3dd66524266\"\r\n },\r\n \"connectionIdentifier\": \"564b7709-f845-4200-a0f0-4e099965ba52\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42259-Global4439\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_42259\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"7a4e14cb-0f30-4c2f-9d53-6c2cd9fa87a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.144.93.0/31\",\r\n \"sessionPrefixV6\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"101.144.93.1\",\r\n \"microsoftSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a01\",\r\n \"peerSessionIPv4Address\": \"101.144.93.0\",\r\n \"peerSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"1f7f6dea-1cf8-4d73-8e77-3185fbebba82\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41272-Global7358\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_41272\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1911\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1911\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.38.103.0/31\",\r\n \"sessionPrefixV6\": \"f426:6750:a75a:aa50:7935:7317:680b:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"244.38.103.1\",\r\n \"microsoftSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1401\",\r\n \"peerSessionIPv4Address\": \"244.38.103.0\",\r\n \"peerSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1228,\r\n \"maxPrefixesAdvertisedV6\": 1801,\r\n \"md5AuthenticationKey\": \"98d7a206c67f03e59871931988c72eb2\"\r\n },\r\n \"connectionIdentifier\": \"9104cb9b-68ce-4895-8824-6c34a686e6e0\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62737-Global7374\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8360\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8360\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"14.9.222.0/31\",\r\n \"sessionPrefixV6\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"14.9.222.1\",\r\n \"microsoftSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db01\",\r\n \"peerSessionIPv4Address\": \"14.9.222.0\",\r\n \"peerSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"ec084ea0-757b-41d0-9825-eaf547511859\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"978b0b63-f979-4c4b-a4a7-814368d4f93a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/988-Global3898\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_988\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5745\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5745\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17707,\r\n \"maxPrefixesAdvertisedV6\": 480,\r\n \"md5AuthenticationKey\": \"71bbf7232def60205a04721e0f722154\"\r\n },\r\n \"connectionIdentifier\": \"fb9d1483-c466-4e22-a6a1-13c02a1df6ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27822-Global9380\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27822\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9957\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9957\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"132.6.82.0/31\",\r\n \"sessionPrefixV6\": \"8406:526b:1259:855e:deef:490c:23fa:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"132.6.82.1\",\r\n \"microsoftSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6001\",\r\n \"peerSessionIPv4Address\": \"132.6.82.0\",\r\n \"peerSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"ec643b08-9c69-48a8-a2d9-fe8f47685c54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.4.164.0/31\",\r\n \"sessionPrefixV6\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"124.4.164.1\",\r\n \"microsoftSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6901\",\r\n \"peerSessionIPv4Address\": \"124.4.164.0\",\r\n \"peerSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"daed42d1-0547-48ad-a3de-7127f378c862\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4457-Global4768\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4457\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1769\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1769\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"126.41.242.0/31\",\r\n \"sessionPrefixV6\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"126.41.242.1\",\r\n \"microsoftSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f01\",\r\n \"peerSessionIPv4Address\": \"126.41.242.0\",\r\n \"peerSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5168,\r\n \"maxPrefixesAdvertisedV6\": 1008,\r\n \"md5AuthenticationKey\": \"6c26585ffae85cbfdf6aa0daf4320ec9\"\r\n },\r\n \"connectionIdentifier\": \"e66f9263-c367-4da4-ac00-db4cd588e32b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13386-Global6814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_13386\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection81\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection81\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"183.130.94.0/31\",\r\n \"sessionPrefixV6\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"183.130.94.1\",\r\n \"microsoftSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac01\",\r\n \"peerSessionIPv4Address\": \"183.130.94.0\",\r\n \"peerSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1982,\r\n \"maxPrefixesAdvertisedV6\": 498,\r\n \"md5AuthenticationKey\": \"143c0ba4b802d74cc4e3581bb13384aa\"\r\n },\r\n \"connectionIdentifier\": \"7af5b5eb-e09a-4711-8de6-2710741bb1ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27207-Global7473\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27207\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection3103\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection3103\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"26bbec7c-1e28-4ddd-b58d-7bd8f8be5ade\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"6dcb956c-52c6-43db-b127-d31486831e0d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10813-Global3979\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_10813\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7223\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7223\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.231.248.0/31\",\r\n \"sessionPrefixV6\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"24.231.248.1\",\r\n \"microsoftSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b501\",\r\n \"peerSessionIPv4Address\": \"24.231.248.0\",\r\n \"peerSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 715,\r\n \"maxPrefixesAdvertisedV6\": 674,\r\n \"md5AuthenticationKey\": \"4680c8ad29418fedaa8ea1c1eed3f8d3\"\r\n },\r\n \"connectionIdentifier\": \"f4fe9ad5-c7f7-4fce-9b06-c203cc07f661\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4964-Global4917\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4964\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection9603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.93.16.0/31\",\r\n \"sessionPrefixV6\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500/127\",\r\n \"microsoftSessionIPv4Address\": \"180.93.16.1\",\r\n \"microsoftSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8501\",\r\n \"peerSessionIPv4Address\": \"180.93.16.0\",\r\n \"peerSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"13dd1202-c083-42ff-bdb7-cf2c66609336\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"2633f4fa-8ef2-47ef-a337-4a3e2fde1ed8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3845-Global1054\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3845\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3030\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3030\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.33.45.0/31\",\r\n \"sessionPrefixV6\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"98.33.45.1\",\r\n \"microsoftSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a201\",\r\n \"peerSessionIPv4Address\": \"98.33.45.0\",\r\n \"peerSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3235,\r\n \"maxPrefixesAdvertisedV6\": 660,\r\n \"md5AuthenticationKey\": \"dd1ad81da0c43262138fdd45621b4fce\"\r\n },\r\n \"connectionIdentifier\": \"a5d263ad-f207-4370-b8fa-c41d4e4bfb0b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23912-Global6634\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_23912\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8074\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"68.244.26.0/31\",\r\n \"sessionPrefixV6\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"68.244.26.1\",\r\n \"microsoftSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f01\",\r\n \"peerSessionIPv4Address\": \"68.244.26.0\",\r\n \"peerSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"02617158-a0a1-4b38-be52-48a82291e52c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.106.15.0/31\",\r\n \"sessionPrefixV6\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"98.106.15.1\",\r\n \"microsoftSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e401\",\r\n \"peerSessionIPv4Address\": \"98.106.15.0\",\r\n \"peerSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"acbc2c96-0514-42f0-bf7e-7e990e3cf3bd\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33594-Global3903\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33594\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9994\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9994\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6be23f2e-4425-4a0c-92aa-078d2dbded09\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6eee85fd-d8b8-4cb6-ad28-331dacb1ffcd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"10f2afe8-a8fa-421c-a2d7-39dc5e69981d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"8f3cf999-01ac-4be8-89d6-7bade57408b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16793-Global5795\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16793\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8169\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17333,\r\n \"maxPrefixesAdvertisedV6\": 1699,\r\n \"md5AuthenticationKey\": \"8e033ac24a0aec29342b9e56a3c3c9da\"\r\n },\r\n \"connectionIdentifier\": \"3faa524b-3c7e-45b9-9730-23c74fcfde89\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global9478\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_29876\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4867\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4867\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"111.110.120.0/31\",\r\n \"sessionPrefixV6\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"111.110.120.1\",\r\n \"microsoftSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e501\",\r\n \"peerSessionIPv4Address\": \"111.110.120.0\",\r\n \"peerSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"2b032bec-573e-497f-90cb-c3bfae1d74f7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.9.187.0/31\",\r\n \"sessionPrefixV6\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"144.9.187.1\",\r\n \"microsoftSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6001\",\r\n \"peerSessionIPv4Address\": \"144.9.187.0\",\r\n \"peerSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"a69dd9bf-f3f2-4c7a-adad-7575a0c2105e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33040-Global7717\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_33040\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3613\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3613\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"195.207.169.0/31\",\r\n \"sessionPrefixV6\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"195.207.169.1\",\r\n \"microsoftSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee01\",\r\n \"peerSessionIPv4Address\": \"195.207.169.0\",\r\n \"peerSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"028d09fe-002a-43ea-a118-2bd1fb68a419\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"577e4919-6972-4483-8ce1-a105db563cf2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56289-Global3276\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56289\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7695\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7695\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.133.234.0/31\",\r\n \"sessionPrefixV6\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"65.133.234.1\",\r\n \"microsoftSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2701\",\r\n \"peerSessionIPv4Address\": \"65.133.234.0\",\r\n \"peerSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8004,\r\n \"maxPrefixesAdvertisedV6\": 355,\r\n \"md5AuthenticationKey\": \"2016403648c38d4be69f5be0e1200f4e\"\r\n },\r\n \"connectionIdentifier\": \"7959b9b5-7649-470d-98e3-6050a86e08b5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36432-Global5808\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_36432\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4733\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4733\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::13\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"e67fb138-6396-45f7-872c-996f0fd36696\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.19\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"5b224d0a-eced-4484-8157-9e4db06cb1f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::20\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"55c7c67d-fa0b-426e-b9a8-014cf30465ab\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.32\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"7894e86c-e880-45f6-acb9-a5b38c4a1b1a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6016-Global4041\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6016\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6696\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6696\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::24\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"d3bf0fca-3a44-4e63-9145-c4f702fb88be\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.36\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"eedebca3-7646-49be-b363-56655bd32bac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::34\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"645a0a4c-78ac-4b70-a5ff-6d6ae9499a63\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"9cccbc68-3666-490b-9244-bb4b9971e172\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59319-Global1353\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_59319\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS484\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS484\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"417870ae-07dd-4dbd-bd9b-c5c6119daa49\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"351effd8-21d4-43d5-9110-d45ffa3368dc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"7204f4b4-8c51-4b4a-8348-f8efe48e18ce\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"3aab6d7a-58b9-4e0b-8a25-7d2952980baf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"32e25349-19b5-4a87-b3d5-0e76f604fed9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"0dd98a7b-8507-479b-b25e-35ba9353c213\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"356ba959-f072-421c-9f3e-8534e8deda18\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"cf96536c-f94b-40e7-adf4-aff4a3096dcb\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/49827-Global2680\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_49827\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS422\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS422\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::40\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"2edba332-2d94-4714-b3e4-98acbd7e1442\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.64\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"bd3bb0ae-ac8c-4206-837b-7f94d828a0c0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::14\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"d12296b0-6854-49b3-bccc-18edf1ad241d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.20\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"babba121-4f55-4b76-acb3-6580769bafca\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37437-Global7419\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_37437\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d7e1184f-1ca2-4de4-9144-2d632fd682af\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"71d13747-68ad-4acf-a286-c2e0a36ba82a\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5f1e2606-2eec-4794-a67c-9337322b928d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4e9112e0-9988-4c7a-a8e4-aa57daa742b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/668-Global7167\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS668_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS668_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::16\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"6aa00aad-38ae-4ef8-85f5-bee4afa9cc0c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.22\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"1da43152-38f3-477f-a1eb-a198a0f6ad99\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::46\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"e78ead4d-d690-4269-8cee-7dec78d2e99f\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.70\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"c2efe8fe-577c-4cd8-86a3-e74cc9036656\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53983-Global1983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_53983\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS7750\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS7750\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"67.170.56.0/31\",\r\n \"sessionPrefixV6\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"67.170.56.1\",\r\n \"microsoftSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d01\",\r\n \"peerSessionIPv4Address\": \"67.170.56.0\",\r\n \"peerSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"d5b94538-8d2d-48f3-96e3-2c50dec5ee07\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"fc34f1c2-e760-4414-b093-d83895d3d982\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64208-Global5081\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64208\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Approved\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.241.142.0/31\",\r\n \"sessionPrefixV6\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"185.241.142.1\",\r\n \"microsoftSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1401\",\r\n \"peerSessionIPv4Address\": \"185.241.142.0\",\r\n \"peerSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10251,\r\n \"maxPrefixesAdvertisedV6\": 1330,\r\n \"md5AuthenticationKey\": \"7780370c8643382d2eb160d97edd5f1c\"\r\n },\r\n \"connectionIdentifier\": \"97d2a745-4212-4a7d-9a76-b0dd9fb1cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19424-Global6892\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19424\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1899\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1899\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"19ce6ec4-bf64-46a2-b507-5aec4c40625a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.231.27.0/31\",\r\n \"sessionPrefixV6\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"149.231.27.1\",\r\n \"microsoftSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3001\",\r\n \"peerSessionIPv4Address\": \"149.231.27.0\",\r\n \"peerSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"ce113ff6-1738-4243-afee-b97705152654\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31184-Global450\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31184\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7034\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7034\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"e8e40d30-da85-4f82-9a16-3f586b901ed9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.51.101.0/31\",\r\n \"sessionPrefixV6\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"162.51.101.1\",\r\n \"microsoftSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7301\",\r\n \"peerSessionIPv4Address\": \"162.51.101.0\",\r\n \"peerSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"0b7156cb-2231-468d-a4fd-73bdae981b1a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51635-Global745\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_51635\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7400\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7400\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.141.175.0/31\",\r\n \"sessionPrefixV6\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"93.141.175.1\",\r\n \"microsoftSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1401\",\r\n \"peerSessionIPv4Address\": \"93.141.175.0\",\r\n \"peerSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"e5a7caa5-c4b4-4416-af9c-a3adf2bf5403\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"60839266-ac4c-44bc-b1b8-641df73aea9e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/379-Global6216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_379\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection82\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection82\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"57402fb7-1c9e-4ef6-bb44-4922de3af0a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.27.22.0/31\",\r\n \"sessionPrefixV6\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00/127\",\r\n \"microsoftSessionIPv4Address\": \"78.27.22.1\",\r\n \"microsoftSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab01\",\r\n \"peerSessionIPv4Address\": \"78.27.22.0\",\r\n \"peerSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"daea5573-1fc3-4593-a233-ea7b5f7f1b3f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34380-Global1014\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_34380\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"22.11.140.0/31\",\r\n \"sessionPrefixV6\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100/127\",\r\n \"microsoftSessionIPv4Address\": \"22.11.140.1\",\r\n \"microsoftSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d101\",\r\n \"peerSessionIPv4Address\": \"22.11.140.0\",\r\n \"peerSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"80ea5dc6-4d5d-4df0-93ef-21ddf6cf6c5d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"134.226.190.0/31\",\r\n \"sessionPrefixV6\": \"86e2:be63:76e6:d683:2700:249:b574:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"134.226.190.1\",\r\n \"microsoftSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4401\",\r\n \"peerSessionIPv4Address\": \"134.226.190.0\",\r\n \"peerSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"5330b4ae-5ead-4afb-a49a-f59dad3904a9\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57101-Global2897\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57101\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9371\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9371\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"cc8d23e3-10fb-4780-9096-ea10f96dae6a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"142.228.109.0/31\",\r\n \"sessionPrefixV6\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"142.228.109.1\",\r\n \"microsoftSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a01\",\r\n \"peerSessionIPv4Address\": \"142.228.109.0\",\r\n \"peerSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"237cfc2a-ad06-4253-af56-bce385789d35\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57976-Global9981\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57976\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9425\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.221.133.0/31\",\r\n \"sessionPrefixV6\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"244.221.133.1\",\r\n \"microsoftSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d201\",\r\n \"peerSessionIPv4Address\": \"244.221.133.0\",\r\n \"peerSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"67e045e5-89f3-4144-808b-cccf19494f8b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"131.189.112.0/31\",\r\n \"sessionPrefixV6\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00/127\",\r\n \"microsoftSessionIPv4Address\": \"131.189.112.1\",\r\n \"microsoftSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e01\",\r\n \"peerSessionIPv4Address\": \"131.189.112.0\",\r\n \"peerSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"4ef0bc6f-789e-40fc-9dea-a9aabfa9486f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44308-Global8574\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_44308\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9651\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9651\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"75.99.4.0/31\",\r\n \"sessionPrefixV6\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100/127\",\r\n \"microsoftSessionIPv4Address\": \"75.99.4.1\",\r\n \"microsoftSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:101\",\r\n \"peerSessionIPv4Address\": \"75.99.4.0\",\r\n \"peerSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"6b3ad4ea-6d56-47bc-a6bc-815ba3ddf378\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"231.144.58.0/31\",\r\n \"sessionPrefixV6\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"231.144.58.1\",\r\n \"microsoftSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f01\",\r\n \"peerSessionIPv4Address\": \"231.144.58.0\",\r\n \"peerSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"563b4b12-fab1-435c-a334-058f73fe2a8a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2611-Global9175\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2611\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection496\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection496\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.116.123\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7f883a89-05be-4901-b304-05fc47accca4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"331da049-a2bb-46ac-9c41-5f72906ac7cf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8cb23af-e6df-4108-b88b-dd30ccb9d366\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce0e9470-c3f7-4673-bc03-91ab3d9ad381\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ad2fae6b-272b-4e29-9ac0-2782c2e3c383\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"efe489e4-1f8a-4766-871a-728b018755fe\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global2824\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.190\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"12e7f7c6-2465-4fd0-9440-c216f6c2d582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.191\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5d4f5837-bece-4493-a255-53962484beae\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/72-Global278\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS72_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS72_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"a8447c1e-d341-4da4-88bd-a76a9c0721c7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"cca4122e-a927-4b3d-9afc-a1b9da3ed3a1\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54458-Global2919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_54458\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7564\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7564\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.157.92.0/31\",\r\n \"sessionPrefixV6\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"19.157.92.1\",\r\n \"microsoftSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6901\",\r\n \"peerSessionIPv4Address\": \"19.157.92.0\",\r\n \"peerSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1729,\r\n \"maxPrefixesAdvertisedV6\": 1565,\r\n \"md5AuthenticationKey\": \"704410701a7bff3e044b4f1139e534e5\"\r\n },\r\n \"connectionIdentifier\": \"d743b2bd-bea1-4e34-84f0-13ca2cb562bc\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18517-Global1801\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_18517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8365\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8365\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11782,\r\n \"maxPrefixesAdvertisedV6\": 882,\r\n \"md5AuthenticationKey\": \"a7408a9c0fbcc713ac36dec95b8a5f42\"\r\n },\r\n \"connectionIdentifier\": \"a235ddd3-c4ae-45b5-be43-0211362e2d55\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20222-Global7444\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20222\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8212\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8212\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.120.235.0/31\",\r\n \"sessionPrefixV6\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"147.120.235.1\",\r\n \"microsoftSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c801\",\r\n \"peerSessionIPv4Address\": \"147.120.235.0\",\r\n \"peerSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"ebf6a328-6507-4787-acbb-cd424c9de916\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"36.52.67.0/31\",\r\n \"sessionPrefixV6\": \"2434:4356:60c:de62:834b:9a1e:6143:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"36.52.67.1\",\r\n \"microsoftSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f801\",\r\n \"peerSessionIPv4Address\": \"36.52.67.0\",\r\n \"peerSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"d5ad7303-7003-42fb-b4e0-f7734a1f0f2b\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35617-Global7735\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_35617\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3085\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3085\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"139.191.31.0/31\",\r\n \"sessionPrefixV6\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"139.191.31.1\",\r\n \"microsoftSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1401\",\r\n \"peerSessionIPv4Address\": \"139.191.31.0\",\r\n \"peerSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"71e1fddc-94c4-4b06-8989-a626f0d2c9f4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"108.72.41.0/31\",\r\n \"sessionPrefixV6\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00/127\",\r\n \"microsoftSessionIPv4Address\": \"108.72.41.1\",\r\n \"microsoftSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf01\",\r\n \"peerSessionIPv4Address\": \"108.72.41.0\",\r\n \"peerSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"d6b1f7e0-e93b-437e-9cf2-203e5771c1a6\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56428-Global1253\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56428\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8860\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8860\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.94.237.0/31\",\r\n \"sessionPrefixV6\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.94.237.1\",\r\n \"microsoftSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b01\",\r\n \"peerSessionIPv4Address\": \"55.94.237.0\",\r\n \"peerSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"30202584-a0c5-47ec-aa4d-dafb3beaeb2c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"73.136.152.0/31\",\r\n \"sessionPrefixV6\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"73.136.152.1\",\r\n \"microsoftSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d01\",\r\n \"peerSessionIPv4Address\": \"73.136.152.0\",\r\n \"peerSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"d5ac1b2e-6c36-4339-bf60-a5a70f0c6d61\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5003-Global7139\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_5003\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2105\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2105\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15835,\r\n \"maxPrefixesAdvertisedV6\": 563,\r\n \"md5AuthenticationKey\": \"585c293b6951a96b6bd7554816244c96\"\r\n },\r\n \"connectionIdentifier\": \"f386c9ea-6d73-47c4-aec0-0fa6a5eafe53\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34829-Global4677\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34829\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3952\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3952\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.30.162.0/31\",\r\n \"sessionPrefixV6\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"216.30.162.1\",\r\n \"microsoftSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2701\",\r\n \"peerSessionIPv4Address\": \"216.30.162.0\",\r\n \"peerSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"22686c93-9228-40c3-b9e2-06024cb283bd\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"37.125.37.0/31\",\r\n \"sessionPrefixV6\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"37.125.37.1\",\r\n \"microsoftSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a01\",\r\n \"peerSessionIPv4Address\": \"37.125.37.0\",\r\n \"peerSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"8d56db3a-f0bd-4664-a11d-a1068d8938fe\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16114-Global1956\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16114\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2120\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2120\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"d03f51cb-ca9c-4d3c-a32d-c02c3b03bfaa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"137.154.208.0/31\",\r\n \"sessionPrefixV6\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"137.154.208.1\",\r\n \"microsoftSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee01\",\r\n \"peerSessionIPv4Address\": \"137.154.208.0\",\r\n \"peerSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"b078e6b7-6347-459d-a015-d6b7479cf8c0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28075-Global7814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28075\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"bcdca94b-391e-4168-85f3-9da8b2a41a1f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"34.88.214.0/31\",\r\n \"sessionPrefixV6\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"34.88.214.1\",\r\n \"microsoftSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1401\",\r\n \"peerSessionIPv4Address\": \"34.88.214.0\",\r\n \"peerSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"deeee639-bdb8-4d1b-9d21-bafa19a2fc1c\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45517-Global4066\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_45517\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5710\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5710\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"52.239.189.0/31\",\r\n \"sessionPrefixV6\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"52.239.189.1\",\r\n \"microsoftSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a201\",\r\n \"peerSessionIPv4Address\": \"52.239.189.0\",\r\n \"peerSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7141,\r\n \"maxPrefixesAdvertisedV6\": 138,\r\n \"md5AuthenticationKey\": \"c2f11c2a70edd65d89edcc1273e6bb5f\"\r\n },\r\n \"connectionIdentifier\": \"1e7a420b-dbe2-4692-835c-553b4f72cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42464-Global4232\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_42464\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3894\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3894\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"103.181.171.0/31\",\r\n \"sessionPrefixV6\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"103.181.171.1\",\r\n \"microsoftSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3001\",\r\n \"peerSessionIPv4Address\": \"103.181.171.0\",\r\n \"peerSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"b20f9d94-06ff-4f52-b4fc-3e9708c4648b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"188.205.251.0/31\",\r\n \"sessionPrefixV6\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"188.205.251.1\",\r\n \"microsoftSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f801\",\r\n \"peerSessionIPv4Address\": \"188.205.251.0\",\r\n \"peerSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"a7dda619-8e63-47ae-91ae-09720e73dd7e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55557-Global4646\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_55557\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2299\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2299\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.128.176.0/31\",\r\n \"sessionPrefixV6\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"175.128.176.1\",\r\n \"microsoftSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b501\",\r\n \"peerSessionIPv4Address\": \"175.128.176.0\",\r\n \"peerSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"7a5d2ced-768e-42b2-a5a2-23befcc1ce36\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"23b67039-418c-47d4-8f87-672a1bc98038\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21718-Global4970\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21718\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2820\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2820\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.85.75.0/31\",\r\n \"sessionPrefixV6\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"152.85.75.1\",\r\n \"microsoftSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9801\",\r\n \"peerSessionIPv4Address\": \"152.85.75.0\",\r\n \"peerSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"51306af0-535a-4f93-b982-d6e715948f2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"701bebfc-992b-4e50-bcc1-875bc917a3a0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48055-Global3575\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_48055\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4062\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4062\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.86.5.0/31\",\r\n \"sessionPrefixV6\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300/127\",\r\n \"microsoftSessionIPv4Address\": \"157.86.5.1\",\r\n \"microsoftSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a301\",\r\n \"peerSessionIPv4Address\": \"157.86.5.0\",\r\n \"peerSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"93b6a793-ca54-4bb2-9eb0-d582ca04fde6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"191.133.12.0/31\",\r\n \"sessionPrefixV6\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"191.133.12.1\",\r\n \"microsoftSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a201\",\r\n \"peerSessionIPv4Address\": \"191.133.12.0\",\r\n \"peerSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"66128cbf-88da-4d2d-9433-f23e1ea9ae06\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52421-Global6227\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52421\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4712\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4712\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"159.197.53.0/31\",\r\n \"sessionPrefixV6\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"159.197.53.1\",\r\n \"microsoftSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b01\",\r\n \"peerSessionIPv4Address\": \"159.197.53.0\",\r\n \"peerSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1593,\r\n \"maxPrefixesAdvertisedV6\": 869,\r\n \"md5AuthenticationKey\": \"2016e74020f9b789bc3cabbd5fcfda05\"\r\n },\r\n \"connectionIdentifier\": \"9eaeac01-0444-4c4c-a967-7c87a1c4f55d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25255-Global5963\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25255\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5737\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5737\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"177.165.254.0/31\",\r\n \"sessionPrefixV6\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"177.165.254.1\",\r\n \"microsoftSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db01\",\r\n \"peerSessionIPv4Address\": \"177.165.254.0\",\r\n \"peerSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14754,\r\n \"maxPrefixesAdvertisedV6\": 445,\r\n \"md5AuthenticationKey\": \"55c206ed3830619b6df45fbf51cd09a4\"\r\n },\r\n \"connectionIdentifier\": \"9687a2ef-a4f1-42ba-9ece-1926839cbe8d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6783-Global437\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6783\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6568\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6568\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.167.207.0/31\",\r\n \"sessionPrefixV6\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.167.207.1\",\r\n \"microsoftSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d01\",\r\n \"peerSessionIPv4Address\": \"55.167.207.0\",\r\n \"peerSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"c38241f0-2e4e-4c82-b626-12da88cf7dac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.207.204.0/31\",\r\n \"sessionPrefixV6\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"65.207.204.1\",\r\n \"microsoftSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6901\",\r\n \"peerSessionIPv4Address\": \"65.207.204.0\",\r\n \"peerSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"962ac2c9-47e7-409e-be99-f7cd0c2eeb2a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32837-Global5224\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32837\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9736\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9736\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17424,\r\n \"maxPrefixesAdvertisedV6\": 665,\r\n \"md5AuthenticationKey\": \"6d7041094f7a46e95e55b5d84877a8bb\"\r\n },\r\n \"connectionIdentifier\": \"ec0ac197-a882-4634-88e3-88eeb085ac50\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2247-Global6056\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.236.50.0/31\",\r\n \"sessionPrefixV6\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"170.236.50.1\",\r\n \"microsoftSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2701\",\r\n \"peerSessionIPv4Address\": \"170.236.50.0\",\r\n \"peerSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"6cf7cf6c-5677-4c91-b089-ce631eda55e8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"62.96.156.0/31\",\r\n \"sessionPrefixV6\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100/127\",\r\n \"microsoftSessionIPv4Address\": \"62.96.156.1\",\r\n \"microsoftSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:101\",\r\n \"peerSessionIPv4Address\": \"62.96.156.0\",\r\n \"peerSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"5fff76ca-082a-4201-a5b2-f032076f3ff0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25517-Global7446\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6874\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6874\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.137.61\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"24999918-1a24-409c-96e1-ca57870dfe98\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"92124ec6-30ae-4398-a8d4-8c3ca8fc2f66\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.136.27\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"431c5028-3e6f-48e5-a22a-85b1df6ff155\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5136b3f7-5de7-4343-9706-ca6fa53261b0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.108.115.47\",\r\n \"peerSessionIPv4Address\": \"206.108.115.21\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1bd51316-1259-4729-b03f-e6940c1110d4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:38:1:0:a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"c624ccd1-568d-41f4-9ed1-e48b36401f48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.57\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"bc009cbe-ed12-4b3b-99ef-a033ac82aa80\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::57\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"caf72971-c457-4aad-ae2f-fc43158829ac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.58\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ec58692d-9f3b-4981-a94a-8bc84dbf3571\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::58\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3d137bc4-08d6-428c-919c-47c6adfbec0a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global4647\"\r\n }\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Chicago_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Chicago_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"91.104.97.0/31\",\r\n \"sessionPrefixV6\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"91.104.97.1\",\r\n \"microsoftSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee01\",\r\n \"peerSessionIPv4Address\": \"91.104.97.0\",\r\n \"peerSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10012,\r\n \"maxPrefixesAdvertisedV6\": 1757,\r\n \"md5AuthenticationKey\": \"5163206124f87c80eed8bad3ba6c423c\"\r\n },\r\n \"connectionIdentifier\": \"12d64126-3092-4394-a288-b41d637083ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51940-Global4386\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51940\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection6364\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6364\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"082f560c-9f24-405a-be63-3384abf57d2f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"664a4e12-906a-4538-88d0-3153815221f7\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41580-Global4786\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41580\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection941\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection941\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b2b250d6-7b3a-4533-a05f-a860b995cb05\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f3411d09-9adc-4a9c-8feb-075f7bc36cb5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"df1d303c-3f22-498c-badd-dd186b16bab8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ae8eca97-a508-41fc-8086-433fdb86a2f8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/109-Global6698\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS109_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS109_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.112\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"53105795-6cf2-4250-b887-117f79e4885b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.113\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8942623-7b94-4b2a-abac-e2f7d9796761\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"dde4aac0-63d0-44b5-86c9-caef39af6663\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"84d6aed5-5200-4bf3-8256-2e5143b6c985\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.160\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"429d2b15-bec7-4ac3-ad95-afdc16c664f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8cbeb370-ad75-4223-be63-0aeb8488f5f8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9ed05631-57c4-4b39-85fa-939fdb0bbac9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b4332c58-db74-4a76-a65c-917767f819e5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e3df46c-f2f5-4b79-834f-bdde368dff04\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b5b23fa2-3026-4e64-9e9e-2e3e497d618c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"2b98dd15-3389-4692-bc09-ce148d87793e\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/714-Global3147\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS714_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS714_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3388,\r\n \"maxPrefixesAdvertisedV6\": 443,\r\n \"md5AuthenticationKey\": \"0fd8210422aa88edc0d6f7c6f8efdd9e\"\r\n },\r\n \"connectionIdentifier\": \"2438d80a-f2a1-4909-8005-f1bc83fb74ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7557\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7557\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.17\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8bbbfe9f-9d97-456a-9b27-cb98b416cbb1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"090ee743-b122-46eb-8d25-840001b725f6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.65\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"67b8a9ae-de2c-4d97-965e-84eff3255406\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"26097e38-4998-42e0-b214-9e9df2bff652\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9194\"\r\n }\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Dallas_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Dallas_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredPrefixes/ps2928?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZFByZWZpeGVzL3BzMjkyOD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredPrefixes/ps6775?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRQcmVmaXhlcy9wczY3NzU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c5b3d69-cfac-4b01-988e-e0331ac65739" + "1765ff8b-e8d8-4197-8135-f668ae85db0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -87,16 +87,16 @@ "no-cache" ], "x-ms-request-id": [ - "a4f43f68-bb46-4ae3-b212-bae682c3364f" + "badafd8a-e681-4eb9-9ba7-775992c83fa1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "68c19b7a-7268-48e0-8bbd-e33f40c3b014" + "6defd211-5fed-45a0-8212-6f835f0c1289" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222146Z:68c19b7a-7268-48e0-8bbd-e33f40c3b014" + "NORTHEUROPE:20210409T075932Z:6defd211-5fed-45a0-8212-6f835f0c1289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,10 +105,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:46 GMT" + "Fri, 09 Apr 2021 07:59:31 GMT" ], "Content-Length": [ - "68" + "91" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,26 +117,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct/registeredPrefixes/ps2928?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcmVnaXN0ZXJlZFByZWZpeGVzL3BzMjkyOD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering/registeredPrefixes/ps6775?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nL3JlZ2lzdGVyZWRQcmVmaXhlcy9wczY3NzU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e820852-9517-4ef2-aa7e-70973915322b" + "a29094e1-4ab0-4a41-ac7e-6716236ecab0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "x-ms-request-id": [ - "2113cea1-33b1-4e79-bb9e-e5fd2fc159f2" + "9f88b626-c5e1-4589-9a73-ea7b2abfaba6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "6a8ee180-1082-4f59-82c3-e8ef2888665f" + "de857748-6eed-4ec7-93c4-65cfcc471a00" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222147Z:6a8ee180-1082-4f59-82c3-e8ef2888665f" + "NORTHEUROPE:20210409T075932Z:de857748-6eed-4ec7-93c4-65cfcc471a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -165,10 +165,10 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:46 GMT" + "Fri, 09 Apr 2021 07:59:31 GMT" ], "Content-Length": [ - "68" + "91" ], "Content-Type": [ "application/json; charset=utf-8" @@ -177,26 +177,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/peering1022/registeredPrefixes?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BlZXJpbmcxMDIyL3JlZ2lzdGVyZWRQcmVmaXhlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/peering2552/registeredPrefixes?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9wZWVyaW5nMjU1Mi9yZWdpc3RlcmVkUHJlZml4ZXM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17845090-1326-4917-8649-1ab736e9c7b9" + "ef7f50c6-43c3-4835-9449-5701c16b522f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -210,13 +210,13 @@ "gateway" ], "x-ms-request-id": [ - "1f46913f-06bf-4eaa-8539-4300c5005216" + "0e7e9a06-ee9b-4a04-8c54-4f4aa2752f08" ], "x-ms-correlation-request-id": [ - "1f46913f-06bf-4eaa-8539-4300c5005216" + "0e7e9a06-ee9b-4a04-8c54-4f4aa2752f08" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222147Z:1f46913f-06bf-4eaa-8539-4300c5005216" + "NORTHEUROPE:20210409T075932Z:0e7e9a06-ee9b-4a04-8c54-4f4aa2752f08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,7 +225,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:47 GMT" + "Fri, 09 Apr 2021 07:59:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -234,29 +234,29 @@ "-1" ], "Content-Length": [ - "232" + "221" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Peering/peerings/peering1022' under resource group 'AS15169_Atlanta_Direct' 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.Peering/peerings/peering2552' under resource group 'testCarrier' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/peering1022/registeredPrefixes/ps2928?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL0FTMTUxNjlfQXRsYW50YV9EaXJlY3QvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BlZXJpbmcxMDIyL3JlZ2lzdGVyZWRQcmVmaXhlcy9wczI5Mjg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/peering2552/registeredPrefixes/ps6775?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9wZWVyaW5nMjU1Mi9yZWdpc3RlcmVkUHJlZml4ZXMvcHM2Nzc1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ea219ec-0c3d-412d-b47f-b7ca74463349" + "d22fd7a7-349f-492d-a803-4f0a67c3be84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -270,13 +270,13 @@ "gateway" ], "x-ms-request-id": [ - "54cf70ef-01aa-4d43-8020-e56d5ced3c8a" + "9007b269-cdc6-4581-8309-7d81491645e9" ], "x-ms-correlation-request-id": [ - "54cf70ef-01aa-4d43-8020-e56d5ced3c8a" + "9007b269-cdc6-4581-8309-7d81491645e9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201012T222147Z:54cf70ef-01aa-4d43-8020-e56d5ced3c8a" + "NORTHEUROPE:20210409T075933Z:9007b269-cdc6-4581-8309-7d81491645e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,7 +285,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Oct 2020 22:21:47 GMT" + "Fri, 09 Apr 2021 07:59:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,17 +294,17 @@ "-1" ], "Content-Length": [ - "232" + "221" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Peering/peerings/peering1022' under resource group 'AS15169_Atlanta_Direct' 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.Peering/peerings/peering2552' under resource group 'testCarrier' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": { "Test-GetRegisteredPrefix": [ - "ps2928", - "peering1022" + "ps6775", + "peering2552" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioDirectPeeringTests/TestCreateGetListRemovePeeringServicePrefix.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioDirectPeeringTests/TestCreateGetListRemovePeeringServicePrefix.json index e3dcc34fcf95..51271a60f375 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioDirectPeeringTests/TestCreateGetListRemovePeeringServicePrefix.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioDirectPeeringTests/TestCreateGetListRemovePeeringServicePrefix.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/ps9859?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9wczk4NTk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/ps6663?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9wczY2NjM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce2ba102-9de9-4b20-8428-687561647e71" + "21d3d19f-794e-44a3-9498-0388d88b03d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-request-id": [ - "bbe52bef-e437-4827-81a9-e960deac0c40" + "f3012272-33ad-4c1e-9c31-ede4b7baf870" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "1b7700e9-b5f1-4bc1-b41f-a8c42f162b86" + "01f6025c-f75f-48b5-a326-fd265806af99" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213246Z:1b7700e9-b5f1-4bc1-b41f-a8c42f162b86" + "NORTHEUROPE:20210409T075058Z:01f6025c-f75f-48b5-a326-fd265806af99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:46 GMT" + "Fri, 09 Apr 2021 07:50:58 GMT" ], "Content-Length": [ - "68" + "91" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,16 +57,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": { "Test-CreateGetListRemovePeeringServicePrefix": [ - "peeringService5296", - "prefix7881", - "rg6171", - "ps9859" + "peeringService7914", + "prefix8736", + "rg155", + "ps6663" ] }, "Variables": { diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeIPv4OnInputObject.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeIPv4OnInputObject.json index b7d7b33b0cca..9991796036de 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeIPv4OnInputObject.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeIPv4OnInputObject.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjE0MC1HbG9iYWw4NDI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMzU4NC1HbG9iYWwyNzI4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22140,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22140-Global3578\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 33584,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS33584-Global8931\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a7c5c67-a7b2-4de8-b70e-9e472c6cef49" + "8587b711-c7a7-4c70-ac9c-9bf0475c1140" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "afc65168-be2f-46db-b854-4c4b86984f8e" + "de11d78d-23af-49ee-88af-d52a5b25389d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "622c1f1f-86c5-4d3a-ae97-5a0fd8f98ea8" + "56b4b6e9-eedb-45e7-8b79-c9b457debd02" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213127Z:622c1f1f-86c5-4d3a-ae97-5a0fd8f98ea8" + "NORTHEUROPE:20210409T075237Z:56b4b6e9-eedb-45e7-8b79-c9b457debd02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:27 GMT" + "Fri, 09 Apr 2021 07:52:37 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22140,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22140-Global3578\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"22140-Global8425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 33584,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS33584-Global8931\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"33584-Global2728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjE0MC1HbG9iYWw4NDI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMzU4NC1HbG9iYWwyNzI4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22140,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22140-Global3578\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 33584,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS33584-Global8931\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "44627c3e-31ad-453c-a293-291c2c3a540f" + "eb8a8b56-2667-42a3-89b8-e65e47a0a853" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "19e77942-cf3f-4261-ae2a-eaad9cbd5edb" + "f40a2e23-45f8-45b0-b979-33998f9ca9ec" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "8e42ceef-4323-4804-a21e-8dc2dca9c8d0" + "29810a49-5338-4d4d-b350-7388ee31329a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213129Z:8e42ceef-4323-4804-a21e-8dc2dca9c8d0" + "NORTHEUROPE:20210409T075239Z:29810a49-5338-4d4d-b350-7388ee31329a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:29 GMT" + "Fri, 09 Apr 2021 07:52:39 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22140,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22140-Global3578\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"22140-Global8425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 33584,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS33584-Global8931\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"33584-Global2728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg5422?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzU0MjI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg5016?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzUwMTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3beb3cfd-0972-40a9-98ba-ae6c6d2f8ba7" + "96965a3c-170a-4909-929e-9da88a1b319e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -162,16 +162,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-request-id": [ - "2da3e05a-fb69-4057-a6a4-a13e72f470ba" + "9a70afee-4a81-432d-836e-707a80df80b6" ], "x-ms-correlation-request-id": [ - "2da3e05a-fb69-4057-a6a4-a13e72f470ba" + "9a70afee-4a81-432d-836e-707a80df80b6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213131Z:2da3e05a-fb69-4057-a6a4-a13e72f470ba" + "NORTHEUROPE:20210409T075241Z:9a70afee-4a81-432d-836e-707a80df80b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,7 +180,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:31 GMT" + "Fri, 09 Apr 2021 07:52:41 GMT" ], "Content-Length": [ "102" @@ -196,22 +196,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg5422?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzU0MjI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg5016?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzUwMTY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cab455f5-94d1-4b22-8a73-ff69af27ef95" + "96965a3c-170a-4909-929e-9da88a1b319e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,13 +231,13 @@ "1199" ], "x-ms-request-id": [ - "7b459f23-32a0-4cf9-86d0-2bc020fab7a0" + "c6473fb3-0dbe-42ad-a7e5-35658e7001c1" ], "x-ms-correlation-request-id": [ - "7b459f23-32a0-4cf9-86d0-2bc020fab7a0" + "c6473fb3-0dbe-42ad-a7e5-35658e7001c1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213134Z:7b459f23-32a0-4cf9-86d0-2bc020fab7a0" + "NORTHEUROPE:20210409T075244Z:c6473fb3-0dbe-42ad-a7e5-35658e7001c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,7 +246,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:34 GMT" + "Fri, 09 Apr 2021 07:52:43 GMT" ], "Content-Length": [ "220" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5422\",\r\n \"name\": \"MockRg5422\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5016\",\r\n \"name\": \"MockRg5016\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjE0MC1HbG9iYWw4NDI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zMzU4NC1HbG9iYWwyNzI4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7185b08f-181b-498c-bce5-4a5b00e4bd1e" + "fb6abca5-39b3-4c25-ae03-525eca9abec0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -288,16 +288,16 @@ "no-cache" ], "x-ms-request-id": [ - "829d257a-65ef-45f7-abf8-deb1a3e7cb19" + "65e7ceaf-7075-407a-a34c-fd6f50235e17" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "89ffd41c-bf0a-4894-a81c-1841d355c563" + "488063e0-fedc-479b-864d-bec6ead7bef5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213134Z:89ffd41c-bf0a-4894-a81c-1841d355c563" + "NORTHEUROPE:20210409T075244Z:488063e0-fedc-479b-864d-bec6ead7bef5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,7 +306,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:33 GMT" + "Fri, 09 Apr 2021 07:52:44 GMT" ], "Content-Length": [ "612" @@ -318,26 +318,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 22140,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS22140-Global3578.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS22140-Global3578\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"22140-Global8425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 33584,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS33584-Global8931.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS33584-Global8931\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"33584-Global2728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5e239ac-a68b-4bb2-afe6-aa0262bd9051" + "772abca7-026e-4373-b110-ecedea4e0377" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -348,16 +348,16 @@ "no-cache" ], "x-ms-request-id": [ - "b9121cc9-acd2-45fe-80f2-df328a56d9f9" + "1947cb5b-7964-4d45-bfb7-f9941b6d3299" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "2d6cc21b-aff9-4336-b5c4-c0a2ca2ca544" + "efc2e0af-c8f9-4e97-85e0-352f5f9045e3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213135Z:2d6cc21b-aff9-4336-b5c4-c0a2ca2ca544" + "NORTHEUROPE:20210409T075245Z:efc2e0af-c8f9-4e97-85e0-352f5f9045e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,10 +366,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:35 GMT" + "Fri, 09 Apr 2021 07:52:44 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -378,26 +378,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe662082-e7c4-4171-9eb9-06b31437c2cd" + "f1751046-0c93-40dd-84e3-3feb7f0de9c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-request-id": [ - "18d20b64-2e43-4abe-a162-c2b45563d765" + "bab57f4b-24c0-473e-8464-9bc0a4c8281d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "14533f84-da8b-4a2b-933c-370de7b9f9e4" + "6a42a14b-aafc-48d3-86e7-c4018bbd924f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213135Z:14533f84-da8b-4a2b-933c-370de7b9f9e4" + "NORTHEUROPE:20210409T075246Z:6a42a14b-aafc-48d3-86e7-c4018bbd924f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,10 +426,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:35 GMT" + "Fri, 09 Apr 2021 07:52:45 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,32 +438,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5422/providers/Microsoft.Peering/peerings/ps2982?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzU0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMjk4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5016/providers/Microsoft.Peering/peerings/ps1365?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzUwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMTM2NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.182\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"81fce9ec-2e36-4c07-be92-e5abebea745d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.148\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"242ba250-f9d7-4b8f-8ac7-7b006aaa0631\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32800\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.180\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"31cddc52-5154-4d7d-a7d9-25e0b610d848\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.154\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"b91ec06e-00cf-4cf0-8f46-b90981b505ea\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_43165\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10eb0d4b-f769-43f1-95a1-c729de18c026" + "f1751046-0c93-40dd-84e3-3feb7f0de9c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1152" + "1154" ] }, "ResponseHeaders": { @@ -474,16 +474,16 @@ "no-cache" ], "x-ms-request-id": [ - "a128394c-c6e9-4ab9-abe0-9be6b5b5162f" + "f7c28490-8aac-480e-9260-9e75580f47d4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "8ae74e7f-c8e2-43dc-88d7-a1f383803940" + "5b542770-29f6-45f6-b6f6-2cf24b37f030" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213140Z:8ae74e7f-c8e2-43dc-88d7-a1f383803940" + "NORTHEUROPE:20210409T075250Z:5b542770-29f6-45f6-b6f6-2cf24b37f030" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +492,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:40 GMT" + "Fri, 09 Apr 2021 07:52:49 GMT" ], "Content-Length": [ - "2070" + "2021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,32 +504,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.182\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"81fce9ec-2e36-4c07-be92-e5abebea745d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.148\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"242ba250-f9d7-4b8f-8ac7-7b006aaa0631\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32800\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"ec70eedc-fd1e-4c94-9f77-8182007fe857\",\r\n \"name\": \"ps2982\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5422/providers/Microsoft.Peering/peerings/ps2982\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.180\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"31cddc52-5154-4d7d-a7d9-25e0b610d848\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.154\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"b91ec06e-00cf-4cf0-8f46-b90981b505ea\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_43165\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps1365\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5016/providers/Microsoft.Peering/peerings/ps1365\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5422/providers/Microsoft.Peering/peerings/ps2982?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzU0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMjk4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5016/providers/Microsoft.Peering/peerings/ps1365?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzUwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMTM2NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.182\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"81fce9ec-2e36-4c07-be92-e5abebea745d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.148\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"242ba250-f9d7-4b8f-8ac7-7b006aaa0631\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.197\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"81fce9ec-2e36-4c07-be92-e5abebea745d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.199\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"242ba250-f9d7-4b8f-8ac7-7b006aaa0631\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32800\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.180\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"31cddc52-5154-4d7d-a7d9-25e0b610d848\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.154\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"b91ec06e-00cf-4cf0-8f46-b90981b505ea\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.195\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"31cddc52-5154-4d7d-a7d9-25e0b610d848\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.197\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"b91ec06e-00cf-4cf0-8f46-b90981b505ea\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_43165\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4ff5b8bc-893e-4e91-94a9-9f2b48505bd3" + "de6d0412-44b5-4517-9b2c-4ddd79199ef5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2542" + "2546" ] }, "ResponseHeaders": { @@ -540,16 +540,16 @@ "no-cache" ], "x-ms-request-id": [ - "6e17da33-3eea-4bb6-a0a3-d102807b499e" + "b103f615-17b0-4c7e-a6c5-aecdb1deac70" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "31459416-7bfc-45c7-9666-fa969d867f23" + "bc6b10c3-5122-4ff9-a5df-e4b62bd82b4b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213141Z:31459416-7bfc-45c7-9666-fa969d867f23" + "NORTHEUROPE:20210409T075251Z:bc6b10c3-5122-4ff9-a5df-e4b62bd82b4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -558,10 +558,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:40 GMT" + "Fri, 09 Apr 2021 07:52:51 GMT" ], "Content-Length": [ - "138" + "161" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,26 +570,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"BadArgument\",\r\n \"message\": \"ConnectionIdentifier:81fce9ec-2e36-4c07-be92-e5abebea745d is already being used in peering.\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadArgument\",\r\n \"message\": \"ConnectionIdentifier:31cddc52-5154-4d7d-a7d9-25e0b610d848 is already being used in peering.\"\r\n }\r\n}", "StatusCode": 400 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5422/providers/Microsoft.Peering/peerings/ps2982?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzU0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMjk4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5016/providers/Microsoft.Peering/peerings/ps1365?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzUwMTYvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMTM2NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a18ab032-119b-4c14-ba87-48ff666332d8" + "de6d0412-44b5-4517-9b2c-4ddd79199ef5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-request-id": [ - "6a3e771a-3ae0-437e-b5b7-22fbb50dd7c4" + "271f0c65-97ba-4e27-9a91-5c94d3ad8c9e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "9300cdcd-8a90-4ea0-a806-f4bee96c1ff8" + "b4d6e3e6-2c22-4bf0-947e-3d243198571c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213141Z:9300cdcd-8a90-4ea0-a806-f4bee96c1ff8" + "NORTHEUROPE:20210409T075250Z:b4d6e3e6-2c22-4bf0-947e-3d243198571c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,10 +618,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:40 GMT" + "Fri, 09 Apr 2021 07:52:49 GMT" ], "Content-Length": [ - "2070" + "2021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,23 +630,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.182\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"81fce9ec-2e36-4c07-be92-e5abebea745d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.148\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3565,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"fe8794d6b80089d1baece3fd8dc6fafe\"\r\n },\r\n \"connectionIdentifier\": \"242ba250-f9d7-4b8f-8ac7-7b006aaa0631\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22140-Global8425\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32800\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"ec70eedc-fd1e-4c94-9f77-8182007fe857\",\r\n \"name\": \"ps2982\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5422/providers/Microsoft.Peering/peerings/ps2982\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.180\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"31cddc52-5154-4d7d-a7d9-25e0b610d848\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.154\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14516,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9eead76554c1a32872372fc0933db4b0\"\r\n },\r\n \"connectionIdentifier\": \"b91ec06e-00cf-4cf0-8f46-b90981b505ea\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33584-Global2728\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_43165\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps1365\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg5016/providers/Microsoft.Peering/peerings/ps1365\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-UpdateExchangeIPv4OnInputObject": [ - "22140-Global8425", - "AS22140-Global3578", - "MockRg5422", - "ps2982" + "33584-Global2728", + "AS33584-Global8931", + "MockRg5016", + "ps1365" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "fe8794d6b80089d1baece3fd8dc6fafe", - "MaxPrefixV4": "3565", - "newIpv4": "10.12.97.197", - "newIpv42": "10.12.97.199" + "Hash": "9eead76554c1a32872372fc0933db4b0", + "MaxPrefixV4": "14516", + "newIpv4": "10.12.97.195", + "newIpv42": "10.12.97.197" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeIPv6OnResourceId.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeIPv6OnResourceId.json index 1533028974ee..a0a9cc741d1d 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeIPv6OnResourceId.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeIPv6OnResourceId.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTU1MS1HbG9iYWw2ODkwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNzY4NS1HbG9iYWw1OTgzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39551,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39551-Global5820\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 37685,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37685-Global293\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7b86bd2f-18e3-4aea-948c-a6701d4bd066" + "b3cd75fb-af25-471d-b1c7-bb07a150087f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "386" + "383" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "42f78b05-d056-4a02-85e2-d9cdd07c2973" + "ad6713b4-2a1e-4f43-bbc4-aa61cd643876" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "55" + "59" ], "x-ms-correlation-request-id": [ - "7f8774a1-2f0a-46f2-befa-677eb388f81d" + "ad1d904b-8333-4b2c-ba5b-7997ddcf6b29" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213050Z:7f8774a1-2f0a-46f2-befa-677eb388f81d" + "NORTHEUROPE:20210409T075139Z:ad1d904b-8333-4b2c-ba5b-7997ddcf6b29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:49 GMT" + "Fri, 09 Apr 2021 07:51:38 GMT" ], "Content-Length": [ - "611" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39551,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39551-Global5820\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"39551-Global6890\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 37685,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37685-Global293\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"37685-Global5983\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTU1MS1HbG9iYWw2ODkwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNzY4NS1HbG9iYWw1OTgzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39551,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39551-Global5820\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 37685,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37685-Global293\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cde5dc07-ba55-41b3-ba40-6dd61dac2185" + "a3cfcc33-9b87-494d-99b5-49fe07aeef9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "422" + "419" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "eddbf9d5-ced6-49c8-86fe-2cab9d7049a3" + "2634e46b-cfa6-4cc6-b028-eef439a56df0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "54" + "58" ], "x-ms-correlation-request-id": [ - "2ac7f603-9d1b-4986-854e-94149b68b322" + "6b733841-3a07-4831-92a1-ecef64a71d59" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213051Z:2ac7f603-9d1b-4986-854e-94149b68b322" + "NORTHEUROPE:20210409T075140Z:6b733841-3a07-4831-92a1-ecef64a71d59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:51 GMT" + "Fri, 09 Apr 2021 07:51:40 GMT" ], "Content-Length": [ - "612" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39551,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39551-Global5820\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"39551-Global6890\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 37685,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37685-Global293\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"37685-Global5983\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6578?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzY1Nzg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4097?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQwOTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f0b3d95-a4e7-47da-be85-842a8b60102d" + "ad3ef8c8-f9a7-41eb-aa0e-77fd135f0fce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "14999" ], "x-ms-request-id": [ - "ee506cef-3fd2-4016-b6d8-94bac5d42828" + "3f12a9d1-fa1e-4d29-a897-4ab6a7ae8e84" ], "x-ms-correlation-request-id": [ - "ee506cef-3fd2-4016-b6d8-94bac5d42828" + "3f12a9d1-fa1e-4d29-a897-4ab6a7ae8e84" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213054Z:ee506cef-3fd2-4016-b6d8-94bac5d42828" + "NORTHEUROPE:20210409T075143Z:3f12a9d1-fa1e-4d29-a897-4ab6a7ae8e84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,7 +180,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:54 GMT" + "Fri, 09 Apr 2021 07:51:43 GMT" ], "Content-Length": [ "102" @@ -196,22 +196,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6578?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzY1Nzg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4097?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQwOTc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "08c97950-c32e-449f-9f81-c7758c98478a" + "ad3ef8c8-f9a7-41eb-aa0e-77fd135f0fce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,13 +231,13 @@ "1199" ], "x-ms-request-id": [ - "4462f49d-49b3-4513-b99a-e5018a18625e" + "c4db2330-8c8a-4d40-a7f9-9ad7c91d53a6" ], "x-ms-correlation-request-id": [ - "4462f49d-49b3-4513-b99a-e5018a18625e" + "c4db2330-8c8a-4d40-a7f9-9ad7c91d53a6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213056Z:4462f49d-49b3-4513-b99a-e5018a18625e" + "NORTHEUROPE:20210409T075145Z:c4db2330-8c8a-4d40-a7f9-9ad7c91d53a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,7 +246,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:55 GMT" + "Fri, 09 Apr 2021 07:51:44 GMT" ], "Content-Length": [ "220" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6578\",\r\n \"name\": \"MockRg6578\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4097\",\r\n \"name\": \"MockRg4097\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zOTU1MS1HbG9iYWw2ODkwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNzY4NS1HbG9iYWw1OTgzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c9a4055-c97b-4340-a2ec-ac0ccb10302c" + "f0dc0c42-ddca-4c97-99c4-f4503b0ef0cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -288,16 +288,16 @@ "no-cache" ], "x-ms-request-id": [ - "d1b87543-e3f8-40c3-bc91-ad28a184110b" + "c4e02fe4-0925-41f8-8867-0fe99f0ffa61" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "c86ffb1c-aa9c-44db-afef-a7f2fc032b5c" + "a26827e7-234f-434f-9b2f-5672f5409e6a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213056Z:c86ffb1c-aa9c-44db-afef-a7f2fc032b5c" + "NORTHEUROPE:20210409T075145Z:a26827e7-234f-434f-9b2f-5672f5409e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,10 +306,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:56 GMT" + "Fri, 09 Apr 2021 07:51:45 GMT" ], "Content-Length": [ - "612" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,26 +318,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 39551,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS39551-Global5820.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS39551-Global5820\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"39551-Global6890\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 37685,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS37685-Global293.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS37685-Global293\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"37685-Global5983\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77397e67-1a6b-4af1-ba9d-ce1eacfc6de4" + "3ede0252-588a-4eca-a3af-a487c95fdc48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -348,16 +348,16 @@ "no-cache" ], "x-ms-request-id": [ - "bbe44a7e-7081-441c-8225-4948fa10ed5b" + "68b18e12-deee-4493-9105-12c07a2a8e15" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "6c8be8db-a048-492b-a94b-7d376d95fd79" + "a4bff5ec-3480-49b3-acd5-8f4262a70bd5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213057Z:6c8be8db-a048-492b-a94b-7d376d95fd79" + "NORTHEUROPE:20210409T075146Z:a4bff5ec-3480-49b3-acd5-8f4262a70bd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,10 +366,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:56 GMT" + "Fri, 09 Apr 2021 07:51:46 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -378,26 +378,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57a564e6-cf29-42ca-bfdb-a5b17baca177" + "09d5c652-cc5a-4a53-9c7e-874884849f8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-request-id": [ - "2a5ce25f-be85-4939-a394-2fa5d1ccacc2" + "722c77e0-aae2-4a5f-a9ae-be6057e2e1fc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "58" ], "x-ms-correlation-request-id": [ - "5f03018a-3f35-40d8-b401-f9ec77a21dd3" + "ca46fd5e-7420-4b80-adf3-94a4cc9776ab" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213057Z:5f03018a-3f35-40d8-b401-f9ec77a21dd3" + "NORTHEUROPE:20210409T075147Z:ca46fd5e-7420-4b80-adf3-94a4cc9776ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,10 +426,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:30:57 GMT" + "Fri, 09 Apr 2021 07:51:46 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,26 +438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6578/providers/Microsoft.Peering/peerings/ps9656?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzOTY1Nj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4097/providers/Microsoft.Peering/peerings/ps8553?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQwOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODU1Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"f5fc47ed-ba55-4f18-95c5-20e92601f96e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.153\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"1b36d32e-8b79-4634-a7a8-3ade69b24874\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41487\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.157\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"95681caf-6ed4-4e2c-bd6c-fa141d10f6a7\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"564dc93c-bcc1-4f4c-bc53-7051fc4eda73\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20959\": \"Active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c11965f1-dc38-4ec3-9844-a8776e056122" + "09d5c652-cc5a-4a53-9c7e-874884849f8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -474,16 +474,16 @@ "no-cache" ], "x-ms-request-id": [ - "cbbf73b7-75e5-448a-907b-562f6a1a9007" + "33fbdc08-e992-4906-9bf0-07d626358c29" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "865f05c8-ef2f-4f8a-ba40-889f1dcf7b86" + "8cd69bce-dfeb-45c5-9996-7bbb9a12d831" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213101Z:865f05c8-ef2f-4f8a-ba40-889f1dcf7b86" + "NORTHEUROPE:20210409T075150Z:8cd69bce-dfeb-45c5-9996-7bbb9a12d831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +492,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:00 GMT" + "Fri, 09 Apr 2021 07:51:50 GMT" ], "Content-Length": [ - "2070" + "2019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,26 +504,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"f5fc47ed-ba55-4f18-95c5-20e92601f96e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.153\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"1b36d32e-8b79-4634-a7a8-3ade69b24874\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41487\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"086af482-8a06-4727-9028-474f16276835\",\r\n \"name\": \"ps9656\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6578/providers/Microsoft.Peering/peerings/ps9656\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.157\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"95681caf-6ed4-4e2c-bd6c-fa141d10f6a7\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"564dc93c-bcc1-4f4c-bc53-7051fc4eda73\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20959\": \"Active\"\r\n },\r\n \"name\": \"ps8553\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4097/providers/Microsoft.Peering/peerings/ps8553\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6578/providers/Microsoft.Peering/peerings/ps9656?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzOTY1Nj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4097/providers/Microsoft.Peering/peerings/ps8553?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQwOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODU1Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"f5fc47ed-ba55-4f18-95c5-20e92601f96e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.153\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"1b36d32e-8b79-4634-a7a8-3ade69b24874\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"peerSessionIPv6Address\": \"edc5:5236:e218:24c6:3885:e1ed:2294:b287/128\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"maxPrefixesAdvertisedV6\": 2000,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"f5fc47ed-ba55-4f18-95c5-20e92601f96e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.153\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"1b36d32e-8b79-4634-a7a8-3ade69b24874\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41487\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.157\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"95681caf-6ed4-4e2c-bd6c-fa141d10f6a7\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"564dc93c-bcc1-4f4c-bc53-7051fc4eda73\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.157\",\r\n \"peerSessionIPv6Address\": \"5afe:2b8b:7326:4818:bf61:a28f:7f42:b45a/128\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"maxPrefixesAdvertisedV6\": 2000,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"95681caf-6ed4-4e2c-bd6c-fa141d10f6a7\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"564dc93c-bcc1-4f4c-bc53-7051fc4eda73\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20959\": \"Active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ee279c0e-559d-4759-9570-034e1a33c288" + "ef0a040f-074e-43df-b36b-43c13f58686e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,16 +540,16 @@ "no-cache" ], "x-ms-request-id": [ - "5b75e602-8718-4e9f-9256-4305eeb35c4d" + "6693a149-6c31-40ca-aee8-ea7ef86a0cc3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "57" ], "x-ms-correlation-request-id": [ - "b18f9141-88cd-4f10-aec1-a9a4f83de16c" + "95f2b5ed-a721-4950-b80d-f257e10a9ae3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213102Z:b18f9141-88cd-4f10-aec1-a9a4f83de16c" + "NORTHEUROPE:20210409T075151Z:95f2b5ed-a721-4950-b80d-f257e10a9ae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -558,10 +558,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:02 GMT" + "Fri, 09 Apr 2021 07:51:51 GMT" ], "Content-Length": [ - "138" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,26 +570,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"BadArgument\",\r\n \"message\": \"ConnectionIdentifier:f5fc47ed-ba55-4f18-95c5-20e92601f96e is already being used in peering.\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadArgument\",\r\n \"message\": \"Unable to parse IP address 5afe:2b8b:7326:4818:bf61:a28f:7f42:b45a/128. Validate the address and try again.\"\r\n }\r\n}", "StatusCode": 400 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6578/providers/Microsoft.Peering/peerings/ps9656?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzOTY1Nj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4097/providers/Microsoft.Peering/peerings/ps8553?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQwOTcvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODU1Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4dbbeef-7e81-47dd-a092-2417daaf06f5" + "ef0a040f-074e-43df-b36b-43c13f58686e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-request-id": [ - "a5dbdd5d-2aaa-4e74-b3be-7fea56a1cd1f" + "945bd90e-de19-4681-b271-6f01604f4220" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "530cff79-ab77-4126-a7c8-62ed15d4ad82" + "92e2badb-c0a0-4fac-b05f-f5233d786ae1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213101Z:530cff79-ab77-4126-a7c8-62ed15d4ad82" + "NORTHEUROPE:20210409T075151Z:92e2badb-c0a0-4fac-b05f-f5233d786ae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,10 +618,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:31:00 GMT" + "Fri, 09 Apr 2021 07:51:50 GMT" ], "Content-Length": [ - "2070" + "2019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,22 +630,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"f5fc47ed-ba55-4f18-95c5-20e92601f96e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.153\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3356,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"20463b0efe927bd3ffc877a9b49e5f34\"\r\n },\r\n \"connectionIdentifier\": \"1b36d32e-8b79-4634-a7a8-3ade69b24874\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/39551-Global6890\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41487\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"086af482-8a06-4727-9028-474f16276835\",\r\n \"name\": \"ps9656\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6578/providers/Microsoft.Peering/peerings/ps9656\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.157\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"95681caf-6ed4-4e2c-bd6c-fa141d10f6a7\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6227,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bb7814cdb45681a5484e7a0e61112661\"\r\n },\r\n \"connectionIdentifier\": \"564dc93c-bcc1-4f4c-bc53-7051fc4eda73\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37685-Global5983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20959\": \"Active\"\r\n },\r\n \"name\": \"ps8553\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4097/providers/Microsoft.Peering/peerings/ps8553\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-UpdateExchangeIPv6OnResourceId": [ - "39551-Global6890", - "AS39551-Global5820", - "MockRg6578", - "ps9656" + "37685-Global5983", + "AS37685-Global293", + "MockRg4097", + "ps8553" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "20463b0efe927bd3ffc877a9b49e5f34", - "MaxPrefixV4": "3356", - "newIpv6": "edc5:5236:e218:24c6:3885:e1ed:2294:b287/128" + "Hash": "bb7814cdb45681a5484e7a0e61112661", + "MaxPrefixV4": "6227", + "newIpv6": "5afe:2b8b:7326:4818:bf61:a28f:7f42:b45a/128" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeMd5OnNameAndResourceGroup.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeMd5OnNameAndResourceGroup.json index 43c4982b6149..014c0930176d 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeMd5OnNameAndResourceGroup.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.ScenarioExchangePeeringTests/TestUpdateExchangeMd5OnNameAndResourceGroup.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81OTcxMS1HbG9iYWw3MTE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MDM0MC1HbG9iYWw1NDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59711,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59711-Global9384\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60340,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60340-Global9065\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d319acf0-7a07-4dba-9dac-ce07a21479e7" + "5993b763-df8b-4fb4-add4-7253817d1846" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "03d7f006-ea49-4369-80b3-c3085976325d" + "f65a7ba1-fede-4bc8-9431-c1c2ffe5f6d5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "57" ], "x-ms-correlation-request-id": [ - "12c050ac-cb15-4770-a818-775ac23f7c7d" + "7b3d58c7-0f21-40ea-a22e-c46667904acc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213207Z:12c050ac-cb15-4770-a818-775ac23f7c7d" + "NORTHEUROPE:20210409T075335Z:7b3d58c7-0f21-40ea-a22e-c46667904acc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:07 GMT" + "Fri, 09 Apr 2021 07:53:35 GMT" ], "Content-Length": [ - "611" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59711,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59711-Global9384\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"59711-Global7117\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60340,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60340-Global9065\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60340-Global543\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81OTcxMS1HbG9iYWw3MTE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MDM0MC1HbG9iYWw1NDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59711,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59711-Global9384\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60340,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60340-Global9065\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a0d280c-e56a-4325-a6cc-5ab5507829d4" + "4c7ed5b9-325c-46db-880c-559fcaa12a25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "8a0c2e8b-5d02-4d09-9e5c-db58fdbf5bfc" + "3048cffe-3970-4704-8a56-d52e7b6ce48c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "56" ], "x-ms-correlation-request-id": [ - "97eeb613-a339-487e-b224-6b186fd133a5" + "b7435b1c-f912-49e6-8ed2-bdf6f0345b25" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213209Z:97eeb613-a339-487e-b224-6b186fd133a5" + "NORTHEUROPE:20210409T075336Z:b7435b1c-f912-49e6-8ed2-bdf6f0345b25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:09 GMT" + "Fri, 09 Apr 2021 07:53:36 GMT" ], "Content-Length": [ - "612" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59711,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59711-Global9384\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"59711-Global7117\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60340,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60340-Global9065\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60340-Global543\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg8648?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzg2NDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6758?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzY3NTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7adc1f8-f312-436a-b300-23eb4fb3e748" + "2f0ab10e-5621-481c-91f1-8758a1eba717" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "14998" ], "x-ms-request-id": [ - "addbc0df-2b53-44d5-848b-329ad08fd941" + "71288759-4000-41eb-864f-4655730c90ee" ], "x-ms-correlation-request-id": [ - "addbc0df-2b53-44d5-848b-329ad08fd941" + "71288759-4000-41eb-864f-4655730c90ee" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213212Z:addbc0df-2b53-44d5-848b-329ad08fd941" + "NORTHEUROPE:20210409T075339Z:71288759-4000-41eb-864f-4655730c90ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,7 +180,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:11 GMT" + "Fri, 09 Apr 2021 07:53:39 GMT" ], "Content-Length": [ "102" @@ -196,22 +196,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg8648?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzg2NDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6758?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzY3NTg/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f7124a16-a30c-4150-a38e-98f1bdc666ee" + "2f0ab10e-5621-481c-91f1-8758a1eba717" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,13 +231,13 @@ "1199" ], "x-ms-request-id": [ - "57a46d67-cee2-463d-8b72-18d0f74ef451" + "7d32b31b-26b3-4237-984a-b1518702d382" ], "x-ms-correlation-request-id": [ - "57a46d67-cee2-463d-8b72-18d0f74ef451" + "7d32b31b-26b3-4237-984a-b1518702d382" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213214Z:57a46d67-cee2-463d-8b72-18d0f74ef451" + "NORTHEUROPE:20210409T075342Z:7d32b31b-26b3-4237-984a-b1518702d382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,7 +246,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:14 GMT" + "Fri, 09 Apr 2021 07:53:41 GMT" ], "Content-Length": [ "220" @@ -258,26 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648\",\r\n \"name\": \"MockRg8648\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758\",\r\n \"name\": \"MockRg6758\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81OTcxMS1HbG9iYWw3MTE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy82MDM0MC1HbG9iYWw1NDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4819a7a6-e318-4651-8f1c-1aaa29963f27" + "c41afc97-d032-4eb7-bbdd-4bd22c19b464" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -288,16 +288,16 @@ "no-cache" ], "x-ms-request-id": [ - "65072fd1-f27b-4e4b-a73c-8bbd8e6aec9b" + "50cf72f5-865b-4a16-b509-c9dbe8ce5faf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "65031ee0-0183-4e79-9b48-22f83a3581f4" + "d5d2bb34-e8d9-4ca9-b6d7-38dc91132a87" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213214Z:65031ee0-0183-4e79-9b48-22f83a3581f4" + "NORTHEUROPE:20210409T075342Z:d5d2bb34-e8d9-4ca9-b6d7-38dc91132a87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,10 +306,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:13 GMT" + "Fri, 09 Apr 2021 07:53:42 GMT" ], "Content-Length": [ - "612" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,26 +318,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59711,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS59711-Global9384.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS59711-Global9384\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"59711-Global7117\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 60340,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS60340-Global9065.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS60340-Global9065\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"60340-Global543\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cb00bbf-e65e-4c96-8a48-99c593acd6ba" + "79812567-35a9-4869-81db-e95c538f6958" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -348,16 +348,16 @@ "no-cache" ], "x-ms-request-id": [ - "493e0573-af6a-4ae1-a3f1-b2dbcbea05dc" + "5f71d9a5-73d8-4845-b4a0-6c4b7e955e80" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "2b215930-4f2b-482d-b78b-6364b8a8966e" + "959a892e-146b-475e-9fb3-e5babc2005d5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213215Z:2b215930-4f2b-482d-b78b-6364b8a8966e" + "NORTHEUROPE:20210409T075342Z:959a892e-146b-475e-9fb3-e5babc2005d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,10 +366,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:14 GMT" + "Fri, 09 Apr 2021 07:53:42 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -378,26 +378,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d0229fc-f84e-4701-a41b-473b36b85464" + "f5df99ea-afe2-425d-8a54-4f67a7570b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -408,16 +408,16 @@ "no-cache" ], "x-ms-request-id": [ - "c4abe286-fb58-4bc5-b4e5-99d1d03c45b0" + "ce93f9fb-8ce0-4ea5-b18e-6a068c72f901" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "57" ], "x-ms-correlation-request-id": [ - "9edf5a4e-56d8-4cec-89c2-83f1c4a6677a" + "19825d90-6d91-44ec-9806-1042e3c548e4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213215Z:9edf5a4e-56d8-4cec-89c2-83f1c4a6677a" + "NORTHEUROPE:20210409T075343Z:19825d90-6d91-44ec-9806-1042e3c548e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,10 +426,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:14 GMT" + "Fri, 09 Apr 2021 07:53:43 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,32 +438,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648/providers/Microsoft.Peering/peerings/ps1176?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzg2NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMTE3Nj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758/providers/Microsoft.Peering/peerings/ps8457?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY3NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODQ1Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.163\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"5038241d-7aba-496b-b29d-71f4ae223eb0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.191\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"c8ebe7c9-1136-4477-a507-e8cc03e78d66\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20739\": \"Active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.176\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"12d18127-c6cd-4a76-b6c4-9093480ea657\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"8a83af96-777c-4a75-8453-41199d240540\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_18023\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5b201279-3137-45d7-9e9e-606b2f7072ea" + "f5df99ea-afe2-425d-8a54-4f67a7570b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1154" + "1153" ] }, "ResponseHeaders": { @@ -474,16 +474,16 @@ "no-cache" ], "x-ms-request-id": [ - "1bd176e8-3311-4f28-9f63-886628cd6b96" + "bc7f30c9-7cc8-44bf-9c94-e58cecd0a5e8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "6e0ef0b1-2408-409f-ab83-49190bac8498" + "5dd41e3b-a325-46bd-a136-6be2714dad72" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213219Z:6e0ef0b1-2408-409f-ab83-49190bac8498" + "NORTHEUROPE:20210409T075348Z:5dd41e3b-a325-46bd-a136-6be2714dad72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +492,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:19 GMT" + "Fri, 09 Apr 2021 07:53:47 GMT" ], "Content-Length": [ - "2072" + "2020" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,32 +504,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.163\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"5038241d-7aba-496b-b29d-71f4ae223eb0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.191\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"c8ebe7c9-1136-4477-a507-e8cc03e78d66\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20739\": \"Active\"\r\n },\r\n \"eTag\": \"23bc56d5-5dc7-4ee3-82b4-5e8215f217cc\",\r\n \"name\": \"ps1176\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648/providers/Microsoft.Peering/peerings/ps1176\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.176\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"12d18127-c6cd-4a76-b6c4-9093480ea657\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"8a83af96-777c-4a75-8453-41199d240540\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_18023\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps8457\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758/providers/Microsoft.Peering/peerings/ps8457\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648/providers/Microsoft.Peering/peerings/ps1176?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzg2NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMTE3Nj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758/providers/Microsoft.Peering/peerings/ps8457?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY3NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODQ1Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.163\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"5038241d-7aba-496b-b29d-71f4ae223eb0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.191\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"c8ebe7c9-1136-4477-a507-e8cc03e78d66\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20739\": \"Active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.176\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"12d18127-c6cd-4a76-b6c4-9093480ea657\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"8a83af96-777c-4a75-8453-41199d240540\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_18023\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bbef3308-d088-4c4b-a418-8370c534c5e5" + "2b69ce99-3c28-4eaa-825a-5dc0925dd50a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1532" + "1531" ] }, "ResponseHeaders": { @@ -540,16 +540,16 @@ "no-cache" ], "x-ms-request-id": [ - "15d88c3c-99d8-411d-875f-8f803fa0ddb7" + "e287b06d-71a3-4911-9a49-a42a4aaa8695" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "be5fb448-c693-4937-9b7d-5999b05fa91d" + "ee44a587-5379-469a-8997-61a4c0441bb3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213220Z:be5fb448-c693-4937-9b7d-5999b05fa91d" + "NORTHEUROPE:20210409T075348Z:ee44a587-5379-469a-8997-61a4c0441bb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -558,10 +558,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:19 GMT" + "Fri, 09 Apr 2021 07:53:48 GMT" ], "Content-Length": [ - "2072" + "2020" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,26 +570,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.163\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"5038241d-7aba-496b-b29d-71f4ae223eb0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.191\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"c8ebe7c9-1136-4477-a507-e8cc03e78d66\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20739\": \"Active\"\r\n },\r\n \"eTag\": \"596e1292-ea13-4621-820e-1ab12d0891b7\",\r\n \"name\": \"ps1176\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648/providers/Microsoft.Peering/peerings/ps1176\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.176\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"12d18127-c6cd-4a76-b6c4-9093480ea657\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"8a83af96-777c-4a75-8453-41199d240540\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_18023\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps8457\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758/providers/Microsoft.Peering/peerings/ps8457\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648/providers/Microsoft.Peering/peerings/ps1176?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzg2NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMTE3Nj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758/providers/Microsoft.Peering/peerings/ps8457?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY3NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODQ1Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d00507f5-a37f-4edb-a3b3-b91fe9f485a8" + "9fd64c04-16e0-4b82-a62b-2efa99145882" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -600,16 +600,16 @@ "no-cache" ], "x-ms-request-id": [ - "ce5ec2d0-edbe-4b65-b49b-c798ada96d6c" + "b1d9d00d-e97e-436b-8531-e2a97d4e2bc6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "8df3090a-6d06-4031-b584-a069fafd569b" + "1b777fc7-8520-40ac-ac0c-2f05743c7276" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213220Z:8df3090a-6d06-4031-b584-a069fafd569b" + "NORTHEUROPE:20210409T075348Z:1b777fc7-8520-40ac-ac0c-2f05743c7276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -618,10 +618,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:19 GMT" + "Fri, 09 Apr 2021 07:53:47 GMT" ], "Content-Length": [ - "2072" + "2020" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,26 +630,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.163\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"5038241d-7aba-496b-b29d-71f4ae223eb0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.191\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"c8ebe7c9-1136-4477-a507-e8cc03e78d66\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20739\": \"Active\"\r\n },\r\n \"eTag\": \"23bc56d5-5dc7-4ee3-82b4-5e8215f217cc\",\r\n \"name\": \"ps1176\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648/providers/Microsoft.Peering/peerings/ps1176\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.176\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"12d18127-c6cd-4a76-b6c4-9093480ea657\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"8a83af96-777c-4a75-8453-41199d240540\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_18023\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps8457\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758/providers/Microsoft.Peering/peerings/ps8457\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648/providers/Microsoft.Peering/peerings/ps1176?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzg2NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMTE3Nj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758/providers/Microsoft.Peering/peerings/ps8457?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY3NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODQ1Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91093e1f-32e8-4dfa-a6de-01d4a3799c03" + "2b69ce99-3c28-4eaa-825a-5dc0925dd50a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -660,16 +660,16 @@ "no-cache" ], "x-ms-request-id": [ - "49c1c6c8-8d12-48d9-977f-3eb42689da4b" + "36591ff3-82a8-44b7-8466-48a2da46322e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "aed62efd-77dd-486c-9d7d-e8818a07f1d0" + "8c4a97f4-c902-4434-a97e-c5511037e8af" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T213221Z:aed62efd-77dd-486c-9d7d-e8818a07f1d0" + "NORTHEUROPE:20210409T075349Z:8c4a97f4-c902-4434-a97e-c5511037e8af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,10 +678,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:32:21 GMT" + "Fri, 09 Apr 2021 07:53:48 GMT" ], "Content-Length": [ - "2072" + "2020" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,21 +690,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.163\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"5038241d-7aba-496b-b29d-71f4ae223eb0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.191\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10373,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"f3199a720db9b8b9fcdde3ac38be01c7\"\r\n },\r\n \"connectionIdentifier\": \"c8ebe7c9-1136-4477-a507-e8cc03e78d66\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59711-Global7117\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20739\": \"Active\"\r\n },\r\n \"eTag\": \"596e1292-ea13-4621-820e-1ab12d0891b7\",\r\n \"name\": \"ps1176\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8648/providers/Microsoft.Peering/peerings/ps1176\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.176\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"12d18127-c6cd-4a76-b6c4-9093480ea657\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14317,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"da848c002b8da3bc1d34cf2155531b7a\"\r\n },\r\n \"connectionIdentifier\": \"8a83af96-777c-4a75-8453-41199d240540\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60340-Global543\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_18023\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps8457\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6758/providers/Microsoft.Peering/peerings/ps8457\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-UpdateExchangeMd5OnNameAndResourceGroup": [ - "59711-Global7117", - "AS59711-Global9384", - "MockRg8648", - "ps1176" + "60340-Global543", + "AS60340-Global9065", + "MockRg6758", + "ps8457" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "f3199a720db9b8b9fcdde3ac38be01c7", - "MaxPrefixV4": "10373" + "Hash": "da848c002b8da3bc1d34cf2155531b7a", + "MaxPrefixV4": "14317" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewBandwidth.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewBandwidth.json index 35734dfd3fa6..49e066ae253a 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewBandwidth.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewBandwidth.json @@ -1,423 +1,321 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34402-Global9524?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNDQwMi1HbG9iYWw5NTI0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 34402,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS34402-Global4354.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS34402-Global4354.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS34402-Global4354\"\r\n }\r\n}", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerings?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5233e1a-5f91-4beb-a5dd-453ef251117b" + "f3fa59a2-155c-4010-b498-9423cc4e99d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "386" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Cache-Control": [ + "no-cache" ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "ef34d1c3-05ff-4940-9c1e-9a920d890011" + "7a92f340-7d8f-45b3-b5ef-a4989730f1ed" ], - "Date": [ - "Wed, 08 Apr 2020 21:57:35 GMT" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "59" ], - "Content-Length": [ - "611" + "x-ms-correlation-request-id": [ + "e49ad019-f062-4f58-8849-2810e2e341db" ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 34402,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS34402-Global4354.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS34402-Global4354.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS34402-Global4354\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"34402-Global9524\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34402-Global9524\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1634-Global312?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8xNjM0LUdsb2JhbDMxMj9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 1634,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1634-Global9058.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1634-Global9058.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1634-Global9058\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1debb533-fab2-4e83-8e0d-094183d6c5cb" + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T074753Z:e49ad019-f062-4f58-8849-2810e2e341db" ], - "Accept-Language": [ - "en-US" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "User-Agent": [ - "FxVersion/4.6.28516.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "382" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "d968482e-5d2c-42dd-abb1-d49c4bc341f4" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 08 Apr 2020 21:57:38 GMT" + "Fri, 09 Apr 2021 07:47:53 GMT" ], "Content-Length": [ - "603" + "402977" ], "Content-Type": [ "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 1634,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1634-Global9058.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1634-Global9058.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1634-Global9058\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"1634-Global312\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1634-Global312\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 100004,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d592b65d-45eb-4494-954e-9abbf2cf2081\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"TestProductionReadyFacilityPeering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.130\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"80051dee-4f1c-43b6-97dc-2ac36eb66bdd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f411576e-9678-4f8c-9bb9-182e438e894d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv4Address\": \"86.104.125.180\",\r\n \"peerSessionIPv4Address\": \"86.104.125.62\",\r\n \"sessionStateV4\": \"Active\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4d57976-4803-43bb-8741-47c7d122f531\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 270,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"86.104.125.0/24\",\r\n \"sessionPrefixV6\": \"2001:7f8:64:225::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:64:225::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:64:225::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Active\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"362a98a2-ea1a-4cfa-8e0a-ff8fd6caa5b9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global8141\"\r\n }\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Bucharest_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Bucharest_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.1.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.1.1\",\r\n \"peerSessionIPv4Address\": \"8.8.1.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"78b0e62a-25f3-460b-8ccf-9cf4a666cfc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.2.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.2.1\",\r\n \"peerSessionIPv4Address\": \"8.8.2.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"eec9ef9a-9349-4a35-9742-f307767ab9d9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.3.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.3.1\",\r\n \"peerSessionIPv4Address\": \"8.8.3.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0166fb10-605a-4e9a-a58b-6fc24e122f3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.4.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.4.1\",\r\n \"peerSessionIPv4Address\": \"8.8.4.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a1bb3543-d772-4547-af6c-e2a8e90611fa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.5.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.5.1\",\r\n \"peerSessionIPv4Address\": \"8.8.5.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2debeef3-a07f-4b65-9d4c-5dcfd00097db\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.6.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.6.1\",\r\n \"peerSessionIPv4Address\": \"8.8.6.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"170fff08-9260-4f8c-bc73-a1b614ec8f31\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.10.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.10.1\",\r\n \"peerSessionIPv4Address\": \"8.8.10.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"f0f2bc91-67b7-4ac6-aff0-1d101985325b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.11.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.11.1\",\r\n \"peerSessionIPv4Address\": \"8.8.11.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5ffefe48-fac4-43cf-b897-063c7571e34f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.12.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.12.1\",\r\n \"peerSessionIPv4Address\": \"8.8.12.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cb961f8-d70e-4b92-83e2-9ca6e0fc205c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.13.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.13.1\",\r\n \"peerSessionIPv4Address\": \"8.8.13.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5eaca22e-79c4-48fa-8866-1b4e93e2f981\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.14.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.14.1\",\r\n \"peerSessionIPv4Address\": \"8.8.14.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"da3071d0-034c-4742-a234-8a6da5fe9884\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.15.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.15.1\",\r\n \"peerSessionIPv4Address\": \"8.8.15.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"9acb1de7-f44e-4a1e-94cd-c7d7770699ba\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.16.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.16.1\",\r\n \"peerSessionIPv4Address\": \"8.8.16.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"bd72cf30-a564-4257-9722-c14b628347e9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.17.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.17.1\",\r\n \"peerSessionIPv4Address\": \"8.8.17.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"6b52e675-80df-43fa-9d9e-794c704b5574\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.18.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.18.1\",\r\n \"peerSessionIPv4Address\": \"8.8.18.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc9aa90-101e-4ae8-911b-5a09a7e7800e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.19.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.19.1\",\r\n \"peerSessionIPv4Address\": \"8.8.19.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ee2af132-7bf1-432c-91c3-d8bac73f4cb9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.20.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.20.1\",\r\n \"peerSessionIPv4Address\": \"8.8.20.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"29fd143b-dd1e-428f-9645-0174d9bbfa4e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.21.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.21.1\",\r\n \"peerSessionIPv4Address\": \"8.8.21.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"7cd07c1e-da3f-476b-9471-7ab64892007b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.22.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.22.1\",\r\n \"peerSessionIPv4Address\": \"8.8.22.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"8b30b125-fa58-46e2-9450-7dbe13bf6e46\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.23.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.23.1\",\r\n \"peerSessionIPv4Address\": \"8.8.23.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1723a782-469a-49f3-a408-8a4193c10a3b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.24.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.24.1\",\r\n \"peerSessionIPv4Address\": \"8.8.24.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"845dc9a6-9796-48b5-b76b-578e36ee8c74\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.25.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.25.1\",\r\n \"peerSessionIPv4Address\": \"8.8.25.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"3ea94186-3b69-4fbd-9d78-4da38ccc16df\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.26.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.26.1\",\r\n \"peerSessionIPv4Address\": \"8.8.26.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"461e7bd4-ba02-4bd1-86bb-fc1e6a8c94c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.30.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.30.1\",\r\n \"peerSessionIPv4Address\": \"8.8.30.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"0cc75e6d-8202-4b33-9dbe-8a663eaaec55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.31.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.31.1\",\r\n \"peerSessionIPv4Address\": \"8.8.31.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"5dcad008-023a-4fa5-a728-704778963683\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.32.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.32.1\",\r\n \"peerSessionIPv4Address\": \"8.8.32.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c0e05c7-07dc-436d-b662-ccbbe00baf3e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.33.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.33.1\",\r\n \"peerSessionIPv4Address\": \"8.8.33.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ecbc9af2-b807-46e3-a5a4-b7958edb8759\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.34.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.34.1\",\r\n \"peerSessionIPv4Address\": \"8.8.34.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a7fc5601-74ce-40d5-84bd-0117c5c6ff97\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.35.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.35.1\",\r\n \"peerSessionIPv4Address\": \"8.8.35.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"23f029d1-90bd-4127-858f-18ee3db63eea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.36.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.36.1\",\r\n \"peerSessionIPv4Address\": \"8.8.36.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"abd4b3ec-1938-4715-ad07-e2fe564cfefa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.37.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.37.1\",\r\n \"peerSessionIPv4Address\": \"8.8.37.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"df678034-69e3-4175-9079-3f47dbe9213f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.38.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.38.1\",\r\n \"peerSessionIPv4Address\": \"8.8.38.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"a002c9a1-f7e8-45e8-af7c-d5133452bd92\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.40.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.40.1\",\r\n \"peerSessionIPv4Address\": \"8.8.40.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.41.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.41.1\",\r\n \"peerSessionIPv4Address\": \"8.8.41.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2c85dd16-53a0-448a-a01d-037f944482c6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"2ea2132c-cbf7-4ef0-9a86-d88fd289cd2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"78c6e7a5-215d-4b14-850b-2bd5967567de\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_5dcad008-023a-4fa5-a728-704778963683\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c0e05c7-07dc-436d-b662-ccbbe00baf3e\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_ecbc9af2-b807-46e3-a5a4-b7958edb8759\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a7fc5601-74ce-40d5-84bd-0117c5c6ff97\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_23f029d1-90bd-4127-858f-18ee3db63eea\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_abd4b3ec-1938-4715-ad07-e2fe564cfefa\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_df678034-69e3-4175-9079-3f47dbe9213f\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_a002c9a1-f7e8-45e8-af7c-d5133452bd92\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c5\": \"ata-96e-2\",\r\n \"manuallySelectedDevices_2c85dd16-53a0-448a-a01d-037f944482c6\": \"ash-96cbe-1a\",\r\n \"manuallySelectedDevices_2ea2132c-cbf7-4ef0-9a86-d88fd289cd2a\": \"ata-96e-2\"\r\n },\r\n \"name\": \"AS15169_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Atlanta_Direct/providers/Microsoft.Peering/peerings/AS15169_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c93342e6-65df-497a-b97c-e7f7dce435ea\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.180/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a4/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.181\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28a6\",\r\n \"peerSessionIPv4Address\": \"104.44.196.180\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a5\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db2137bc-bf0d-4624-8421-309c99ad3515\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1949,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.182/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::28a8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.183\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::28aa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.182\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::28a9\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c93342e6-65df-497a-b97c-e7f7dce435ea\": \"ath01-96cbe-1a\",\r\n \"manuallySelectedDevices_db2137bc-bf0d-4624-8421-309c99ad3515\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_db2137bc-bf0d-4624-8421-309c99ad3515\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"ath01-96cbe-1a\",\r\n \"crmIncidentId_0a851a3b-cf47-4f7a-8d23-26b1c3a2d824\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS15169_Athens_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Athens/providers/Microsoft.Peering/peerings/AS15169_Athens_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.241.20/30\",\r\n \"sessionPrefixV6\": \"2600:804:b0f::10/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.241.22\",\r\n \"microsoftSessionIPv6Address\": \"2600:804:b0f::12\",\r\n \"peerSessionIPv4Address\": \"152.179.241.21\",\r\n \"peerSessionIPv6Address\": \"2600:804:b0f::11\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"e0e30d16-1017-4a81-9dcd-f57d6f6c7479\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.218/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b10/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.219\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b12\",\r\n \"peerSessionIPv4Address\": \"104.44.197.218\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b11\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7bc341fa-3e04-4b4e-8271-b84050335faf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.216/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b0c/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.217\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0e\",\r\n \"peerSessionIPv4Address\": \"104.44.197.216\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b0d\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f65228f9-1b84-4520-bbe2-7ca0e60af6e4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 11,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.214/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b08/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.215\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b0a\",\r\n \"peerSessionIPv4Address\": \"104.44.197.214\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b09\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e2305f6-6d67-457f-a52d-0aabda4979b2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"ata-96e-1\",\r\n \"crmIncidentId_7bc341fa-3e04-4b4e-8271-b84050335faf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"hello\": \"world\",\r\n \"manuallySelectedDevices_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"ata-96e-1\",\r\n \"crmIncidentId_f65228f9-1b84-4520-bbe2-7ca0e60af6e4\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"ata-96e-1\",\r\n \"crmIncidentId_1e2305f6-6d67-457f-a52d-0aabda4979b2\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Atlanta_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Atlanta/providers/Microsoft.Peering/peerings/AS701_Atlanta_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3abb06cb-9af1-4dcd-ab52-5a3542362fdf\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"51f44fc3-8302-4558-bae8-bd7de3337892\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6762\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3abb06cb-9af1-4dcd-ab52-5a3542362fdf\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_51f44fc3-8302-4558-bae8-bd7de3337892\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_51f44fc3-8302-4558-bae8-bd7de3337892\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS6762_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS6762_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.197.212/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2b04/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.197.213\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2b06\",\r\n \"peerSessionIPv4Address\": \"104.44.197.212\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2b05\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"60131dd1-f794-41f2-bc88-0db837e4ebc6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"2f306a02-bfb1-42b2-8c81-d2ed10a8177a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"8b939082-8b95-4ba0-9205-092599c73c30\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a967aaab-a020-436b-a8db-b692bd898e47\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"cee9212e-b70d-4c95-bb18-159cb5844e18\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3065a89e-8930-424e-964c-cc2bd0356326\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"6722d4dd-f59f-4892-8c9a-59136eac1dda\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e027e2d4-690a-45fa-872f-46302a30166d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"212d25c1-d5bb-45f1-ae45-e338b74f672a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"43cb5d8a-9d53-44bf-b2b6-08760f44a8da\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"3634d0c2-4aa8-457a-a618-46793789e241\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"e6899ef4-5e99-4fa0-8308-e0436ab79248\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"crmIncidentId_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_60131dd1-f794-41f2-bc88-0db837e4ebc6\": \"kul30-96cbe-1a\",\r\n \"manuallySelectedDevices_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_2f306a02-bfb1-42b2-8c81-d2ed10a8177a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_8b939082-8b95-4ba0-9205-092599c73c30\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_8b939082-8b95-4ba0-9205-092599c73c30\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a967aaab-a020-436b-a8db-b692bd898e47\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a967aaab-a020-436b-a8db-b692bd898e47\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_cee9212e-b70d-4c95-bb18-159cb5844e18\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3065a89e-8930-424e-964c-cc2bd0356326\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3065a89e-8930-424e-964c-cc2bd0356326\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_6722d4dd-f59f-4892-8c9a-59136eac1dda\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e027e2d4-690a-45fa-872f-46302a30166d\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e027e2d4-690a-45fa-872f-46302a30166d\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_7111f07c-ce2c-4f88-8b5c-4d1c815cd90f\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_212d25c1-d5bb-45f1-ae45-e338b74f672a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_43cb5d8a-9d53-44bf-b2b6-08760f44a8da\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_3634d0c2-4aa8-457a-a618-46793789e241\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_3634d0c2-4aa8-457a-a618-46793789e241\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_e6899ef4-5e99-4fa0-8308-e0436ab79248\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS701_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS701_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"423bc362-bd7c-41d2-b402-5244ff93fa2b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"a352069e-0f89-4c4c-892c-04968a125395\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"4d89564e-855e-437f-aa06-e12a85eb89ac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"c06111ff-0542-441e-922f-c8af28d2190c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"56e866cb-484e-44b4-93b5-d56c5d497b54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 460,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"dc8f1805-bf5b-4f22-8f55-470fba67ea0a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS9116\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_423bc362-bd7c-41d2-b402-5244ff93fa2b\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_a352069e-0f89-4c4c-892c-04968a125395\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_a352069e-0f89-4c4c-892c-04968a125395\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_4d89564e-855e-437f-aa06-e12a85eb89ac\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_c06111ff-0542-441e-922f-c8af28d2190c\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_c06111ff-0542-441e-922f-c8af28d2190c\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_56e866cb-484e-44b4-93b5-d56c5d497b54\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\",\r\n \"manuallySelectedDevices_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"kul30-96cbe-1a\",\r\n \"crmIncidentId_dc8f1805-bf5b-4f22-8f55-470fba67ea0a\": \"606be6bd-6a3a-4ec2-827b-74a2bcb17f5a\"\r\n },\r\n \"name\": \"AS9116_Kuala_Lumpur_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Kuala_Lumpur/providers/Microsoft.Peering/peerings/AS9116_Kuala_Lumpur_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.47.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.47.1\",\r\n \"peerSessionIPv4Address\": \"8.8.47.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"efdaafe5-5ea7-4733-be23-a93ddbd25804\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.48.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.48.1\",\r\n \"peerSessionIPv4Address\": \"8.8.48.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"58288c45-0d05-4473-b209-c8a1b0e46103\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"51f82159-00b0-431a-be39-d6734d0bcdcc\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"7b9d96bd-e139-43e9-8582-ca2852bc1312\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"da7b1b9a-067e-47a3-ac4e-1103b461614f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"c3cb1b2e-4635-4450-88c8-9570c5ab59be\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"91a0c265-8a4f-44c1-9e84-f77bf017c428\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1353,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"f7f89bae-5db7-4dd5-8023-86637f03d641\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_efdaafe5-5ea7-4733-be23-a93ddbd25804\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_58288c45-0d05-4473-b209-c8a1b0e46103\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_08ba76bc-10e1-4ddb-aedc-0b04faaeab7e\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_51f82159-00b0-431a-be39-d6734d0bcdcc\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_7b9d96bd-e139-43e9-8582-ca2852bc1312\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_da7b1b9a-067e-47a3-ac4e-1103b461614f\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_2dd288d9-3eb9-4245-a8f6-d8f3b5d26bef\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_c3cb1b2e-4635-4450-88c8-9570c5ab59be\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_91a0c265-8a4f-44c1-9e84-f77bf017c428\": \"akl01-96cbe-1a\",\r\n \"manuallySelectedDevices_f7f89bae-5db7-4dd5-8023-86637f03d641\": \"akl01-96cbe-1a\"\r\n },\r\n \"name\": \"AS15169_Auckland_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Auckland_Direct/providers/Microsoft.Peering/peerings/AS15169_Auckland_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.14.1.0/30\",\r\n \"microsoftSessionIPv4Address\": \"32.14.1.2\",\r\n \"peerSessionIPv4Address\": \"32.14.1.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1e66139e-6587-4025-949e-fe6f1dadab25\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS64537\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"AS64537_Seattle_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS64537_Seattle_Direct/providers/Microsoft.Peering/peerings/AS64537_Seattle_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d93d6754-6a3c-432b-aba9-777cfa97c3ec\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS12302\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_d93d6754-6a3c-432b-aba9-777cfa97c3ec\": \"ash-96cbe-1a\"\r\n },\r\n \"name\": \"AS12302_Ashburn_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Ashburn/providers/Microsoft.Peering/peerings/AS12302_Ashburn_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"241.184.55.0/31\",\r\n \"sessionPrefixV6\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"241.184.55.1\",\r\n \"microsoftSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac01\",\r\n \"peerSessionIPv4Address\": \"241.184.55.0\",\r\n \"peerSessionIPv6Address\": \"f1b8:3756:9057:c82e:a09a:9fbe:75d0:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10794,\r\n \"maxPrefixesAdvertisedV6\": 1430,\r\n \"md5AuthenticationKey\": \"68918b1b5b130694aec6dcb3432f7b3a\"\r\n },\r\n \"connectionIdentifier\": \"7f446685-9191-41b2-be9c-7f56c699efe2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55253-Global5765\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_55253\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9950\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9950\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.196.88.0/31\",\r\n \"sessionPrefixV6\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"29.196.88.1\",\r\n \"microsoftSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8601\",\r\n \"peerSessionIPv4Address\": \"29.196.88.0\",\r\n \"peerSessionIPv6Address\": \"1dc4:58eb:4db4:9078:cfc7:473c:19b4:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"660a83b4-2f56-430e-b885-c3464acfc4b9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"6.7.47.0/31\",\r\n \"sessionPrefixV6\": \"607:2f23:e383:ba42:4b63:950:4d25:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"6.7.47.1\",\r\n \"microsoftSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e501\",\r\n \"peerSessionIPv4Address\": \"6.7.47.0\",\r\n \"peerSessionIPv6Address\": \"607:2f23:e383:ba42:4b63:950:4d25:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10757,\r\n \"maxPrefixesAdvertisedV6\": 1703,\r\n \"md5AuthenticationKey\": \"d1f5d54c4b709681bbed9c95411b810a\"\r\n },\r\n \"connectionIdentifier\": \"e86e3109-b558-43cb-ab82-1e27dcce4459\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/50896-Global8957\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_50896\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1538\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1538\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.54.20.0/31\",\r\n \"sessionPrefixV6\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"170.54.20.1\",\r\n \"microsoftSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6901\",\r\n \"peerSessionIPv4Address\": \"170.54.20.0\",\r\n \"peerSessionIPv6Address\": \"aa36:140b:a1b0:8864:5ae5:49d8:e168:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"8b253073-c71b-480d-bd96-e919f594fc04\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.136.117.0/31\",\r\n \"sessionPrefixV6\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"203.136.117.1\",\r\n \"microsoftSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a201\",\r\n \"peerSessionIPv4Address\": \"203.136.117.0\",\r\n \"peerSessionIPv6Address\": \"cb88:75b6:100:c528:24a4:a0f1:b762:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 246,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"734f06b821dde24112cca82525895ac2\"\r\n },\r\n \"connectionIdentifier\": \"80472de1-e0af-479e-855b-3d800af32726\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2489-Global3700\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2489\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1959\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1959\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"39.236.85.0/31\",\r\n \"sessionPrefixV6\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"39.236.85.1\",\r\n \"microsoftSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a201\",\r\n \"peerSessionIPv4Address\": \"39.236.85.0\",\r\n \"peerSessionIPv6Address\": \"27ec:55d1:f64a:8902:a5ac:7b86:86de:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"56b7f55d-37e3-4579-b644-33e4e5b360e2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 259,\r\n \"maxPrefixesAdvertisedV6\": 808,\r\n \"md5AuthenticationKey\": \"e45cd9cdbacac66ec08690ce0a9fc094\"\r\n },\r\n \"connectionIdentifier\": \"10f5489f-f803-4606-895d-7103e6d31fdb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51447-Global3028\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51447\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"hello\": \"world\"\r\n },\r\n \"name\": \"DirectOneConnection2744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"47.91.63.0/31\",\r\n \"sessionPrefixV6\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"47.91.63.1\",\r\n \"microsoftSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1401\",\r\n \"peerSessionIPv4Address\": \"47.91.63.0\",\r\n \"peerSessionIPv6Address\": \"2f5b:3f3c:b0a2:d7ec:5830:ce68:ce6d:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"3a3a2cf1-bca3-4bed-828b-d47f350e0c83\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6589,\r\n \"maxPrefixesAdvertisedV6\": 1322,\r\n \"md5AuthenticationKey\": \"26099b639c9f5e6139ad3374e08eaf52\"\r\n },\r\n \"connectionIdentifier\": \"0cd3554b-ae27-4296-a852-a54179c6d035\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20108-Global6999\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_20108\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7623\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7623\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.210.52.0/31\",\r\n \"sessionPrefixV6\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"78.210.52.1\",\r\n \"microsoftSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6901\",\r\n \"peerSessionIPv4Address\": \"78.210.52.0\",\r\n \"peerSessionIPv6Address\": \"4ed2:34f0:ac65:c38a:d9dd:6d44:12ec:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"78b1382e-c5be-4f6c-8dc3-a6d920a5dc22\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"60.241.107.0/31\",\r\n \"sessionPrefixV6\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"60.241.107.1\",\r\n \"microsoftSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9901\",\r\n \"peerSessionIPv4Address\": \"60.241.107.0\",\r\n \"peerSessionIPv6Address\": \"3cf1:6b1d:703c:b398:7b0:d70a:2dd2:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13020,\r\n \"maxPrefixesAdvertisedV6\": 11,\r\n \"md5AuthenticationKey\": \"97952191761175358ebb476fb4357ab1\"\r\n },\r\n \"connectionIdentifier\": \"eab77b83-f1f0-4348-914c-3c2287891cf5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38128-Global3805\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38128\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8137\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8137\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"a5ff08de-7ec0-4eb7-afd7-ca2f7fe95194\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19429,\r\n \"maxPrefixesAdvertisedV6\": 264,\r\n \"md5AuthenticationKey\": \"2ce347273c13923fe970ae73105f41a5\"\r\n },\r\n \"connectionIdentifier\": \"d0e178ac-f585-4bf3-bffb-4ec351be92d1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22815-Global919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22815\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8728\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8728\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"44.54.241.0/31\",\r\n \"sessionPrefixV6\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"44.54.241.1\",\r\n \"microsoftSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee01\",\r\n \"peerSessionIPv4Address\": \"44.54.241.0\",\r\n \"peerSessionIPv6Address\": \"2c36:f1c3:72da:bd49:c759:81c:b93:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"2fd6a033-6af7-41aa-a7e8-45ac5a6e61f9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.152.34.0/31\",\r\n \"sessionPrefixV6\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"129.152.34.1\",\r\n \"microsoftSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f701\",\r\n \"peerSessionIPv4Address\": \"129.152.34.0\",\r\n \"peerSessionIPv6Address\": \"8198:2271:fb56:a23c:453:75b3:30bf:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14026,\r\n \"maxPrefixesAdvertisedV6\": 879,\r\n \"md5AuthenticationKey\": \"d400e01c542f45fd2a41c758cbc3d43d\"\r\n },\r\n \"connectionIdentifier\": \"f02a5883-d457-48eb-86ec-8c62d9f01012\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31970-Global5752\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31970\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9731\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9731\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.83.157.0/31\",\r\n \"sessionPrefixV6\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"144.83.157.1\",\r\n \"microsoftSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a201\",\r\n \"peerSessionIPv4Address\": \"144.83.157.0\",\r\n \"peerSessionIPv6Address\": \"9053:9dcb:f9b8:988b:45aa:44a1:52ff:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3670,\r\n \"maxPrefixesAdvertisedV6\": 633,\r\n \"md5AuthenticationKey\": \"f79cc7d1fc7a955029fa7d655672fec0\"\r\n },\r\n \"connectionIdentifier\": \"c23d0784-d60f-45e5-822b-9a4712926e7c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11364-Global7480\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_11364\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2029\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2029\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"45.127.211.0/31\",\r\n \"sessionPrefixV6\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"45.127.211.1\",\r\n \"microsoftSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3001\",\r\n \"peerSessionIPv4Address\": \"45.127.211.0\",\r\n \"peerSessionIPv6Address\": \"2d7f:d345:4b15:86c7:101e:162a:3cf3:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3752,\r\n \"maxPrefixesAdvertisedV6\": 1476,\r\n \"md5AuthenticationKey\": \"1d7912808f2b7701e878d5db7248b75c\"\r\n },\r\n \"connectionIdentifier\": \"0d816d82-f5a3-4240-961b-230cf135d4ab\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/11737-Global8819\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_11737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2500\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2500\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"196.24.139.0/31\",\r\n \"sessionPrefixV6\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"196.24.139.1\",\r\n \"microsoftSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3001\",\r\n \"peerSessionIPv4Address\": \"196.24.139.0\",\r\n \"peerSessionIPv6Address\": \"c418:8b4b:48a8:773d:7020:4d10:6fd2:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7234,\r\n \"maxPrefixesAdvertisedV6\": 1074,\r\n \"md5AuthenticationKey\": \"8d15a0c621c4eae4e06f249fd56f10c2\"\r\n },\r\n \"connectionIdentifier\": \"57bdb885-deb9-42e4-b836-9ab93f29d0c2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1078-Global9080\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_1078\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection2752\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2752\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1408,\r\n \"maxPrefixesAdvertisedV6\": 832,\r\n \"md5AuthenticationKey\": \"ce6640d9404bc472ff6538bf66bc4888\"\r\n },\r\n \"connectionIdentifier\": \"00812dcc-15a1-46f0-b4fd-1ee466ccc231\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64098-Global3338\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_64098\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection2881\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection2881\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"118.39.68.0/31\",\r\n \"sessionPrefixV6\": \"7627:4409:7884:e034:e6aa:335b:9335:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"118.39.68.1\",\r\n \"microsoftSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9901\",\r\n \"peerSessionIPv4Address\": \"118.39.68.0\",\r\n \"peerSessionIPv6Address\": \"7627:4409:7884:e034:e6aa:335b:9335:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18413,\r\n \"maxPrefixesAdvertisedV6\": 554,\r\n \"md5AuthenticationKey\": \"28c359f10c907ad3adc52539a996703a\"\r\n },\r\n \"connectionIdentifier\": \"75bc6a0d-2d96-45fe-9628-48b4a37dd80c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/15592-Global9066\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_15592\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection468\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection468\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"29.123.118.0/31\",\r\n \"sessionPrefixV6\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"29.123.118.1\",\r\n \"microsoftSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4401\",\r\n \"peerSessionIPv4Address\": \"29.123.118.0\",\r\n \"peerSessionIPv6Address\": \"1d7b:7669:7478:c7fa:8702:392e:e954:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19531,\r\n \"maxPrefixesAdvertisedV6\": 1180,\r\n \"md5AuthenticationKey\": \"f1a078d353e513b9a4eba41e34924dbf\"\r\n },\r\n \"connectionIdentifier\": \"13c6fcb9-4b4a-42c7-8b36-a2745ab460e6\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53691-Global3806\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_53691\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6020\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6020\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"172.91.98.0/31\",\r\n \"sessionPrefixV6\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"172.91.98.1\",\r\n \"microsoftSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f01\",\r\n \"peerSessionIPv4Address\": \"172.91.98.0\",\r\n \"peerSessionIPv6Address\": \"ac5b:6284:de78:a208:ebbb:f23:a343:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18472,\r\n \"maxPrefixesAdvertisedV6\": 1208,\r\n \"md5AuthenticationKey\": \"3f1e0168512a696f39ba6c8b566efe1d\"\r\n },\r\n \"connectionIdentifier\": \"9ba968a8-f607-45b2-b291-9b7fc77e386c\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25704-Global758\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_25704\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6139\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6139\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.215.145.0/31\",\r\n \"sessionPrefixV6\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600/127\",\r\n \"microsoftSessionIPv4Address\": \"93.215.145.1\",\r\n \"microsoftSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5601\",\r\n \"peerSessionIPv4Address\": \"93.215.145.0\",\r\n \"peerSessionIPv6Address\": \"5dd7:91cb:8303:8257:61f8:4a40:658c:5600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16162,\r\n \"maxPrefixesAdvertisedV6\": 1491,\r\n \"md5AuthenticationKey\": \"b7a5d16b0a72a2a1948195105e886cf8\"\r\n },\r\n \"connectionIdentifier\": \"caddbf97-d11c-4f2f-8c21-0d6812d3febb\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52758-Global131\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52758\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection6508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection6508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"db47cdc1-7407-42c5-a134-3674452d656e\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce7825b9-289e-4bc8-b1b5-99de54e8e582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.111\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4351bf08-b728-4c55-8847-00c4391d1b23\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a260272d-520f-4a4a-a8a6-0fff0f1e85d5\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global6072\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.157.57.0/31\",\r\n \"sessionPrefixV6\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"149.157.57.1\",\r\n \"microsoftSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee01\",\r\n \"peerSessionIPv4Address\": \"149.157.57.0\",\r\n \"peerSessionIPv6Address\": \"959d:39bc:7548:ccd2:6757:d137:d7b4:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"d588ae8f-ddc1-4d41-afe7-bdc71385bb17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"113.147.198.0/31\",\r\n \"sessionPrefixV6\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"113.147.198.1\",\r\n \"microsoftSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b01\",\r\n \"peerSessionIPv4Address\": \"113.147.198.0\",\r\n \"peerSessionIPv6Address\": \"7193:c695:24b9:e36f:7c38:98b7:dd20:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1742,\r\n \"maxPrefixesAdvertisedV6\": 1677,\r\n \"md5AuthenticationKey\": \"271b1f89660a2469958b2a46eea8b421\"\r\n },\r\n \"connectionIdentifier\": \"8ec4cbaa-d47d-4ec4-8c4c-b4ccdd58d3ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/47528-Global3377\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_47528\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection865\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection865\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"569ae825-ea67-452e-a49d-32514bb56251\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"7c96d251-9cfd-427e-90ef-f2820d85f6a3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"0ef62088-01a0-4565-9bc1-387553444c7b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"f806e838-2d22-4eb8-a866-85d79029cc5d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"487c0fc7-721a-44b1-869d-b9f23ee8ccb4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.55\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17933,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"fd74ac6a-ec60-4fc1-9385-b9fa721d04f3\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"1984ea5e-8c72-43bf-8d4c-df005dfde027\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa4\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1587,\r\n \"md5AuthenticationKey\": \"45fb32d1a4146736a315b1604b739f72\"\r\n },\r\n \"connectionIdentifier\": \"065696ba-18c9-4485-926c-d4a5a120d914\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33348-Global4010\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33348\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS5732\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS5732\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.201.146.0/31\",\r\n \"sessionPrefixV6\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"175.201.146.1\",\r\n \"microsoftSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f701\",\r\n \"peerSessionIPv4Address\": \"175.201.146.0\",\r\n \"peerSessionIPv6Address\": \"afc9:927e:f57b:8429:c557:e37d:977d:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7884,\r\n \"maxPrefixesAdvertisedV6\": 1723,\r\n \"md5AuthenticationKey\": \"2fb12e8bdbb38a0bf40073a5127448be\"\r\n },\r\n \"connectionIdentifier\": \"a8f21a11-4f00-4662-b717-4b5e9d9c2827\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/22267-Global9836\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_22267\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4210\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4210\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16431,\r\n \"maxPrefixesAdvertisedV6\": 1391,\r\n \"md5AuthenticationKey\": \"4e29939390334ed41d3627ec11b9a89b\"\r\n },\r\n \"connectionIdentifier\": \"89e132fc-770d-47bd-8717-6b60e962a382\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34893-Global3365\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34893\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3927\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3927\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.193.205.0/31\",\r\n \"sessionPrefixV6\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"147.193.205.1\",\r\n \"microsoftSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a01\",\r\n \"peerSessionIPv4Address\": \"147.193.205.0\",\r\n \"peerSessionIPv6Address\": \"93c1:cdc5:10bb:7bad:1e45:19fa:4539:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1095,\r\n \"maxPrefixesAdvertisedV6\": 180,\r\n \"md5AuthenticationKey\": \"982fcaab1e2f365731f6ebefaf7cab66\"\r\n },\r\n \"connectionIdentifier\": \"5c050611-8122-4e93-9044-32b95dc6b006\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16734-Global9075\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_16734\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7969\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7969\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"6dc4a1ed-8ac6-49ba-a113-f8a6e49972a0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9388,\r\n \"maxPrefixesAdvertisedV6\": 1824,\r\n \"md5AuthenticationKey\": \"51246fcd9ef4de9facea26e0227930d7\"\r\n },\r\n \"connectionIdentifier\": \"386abe6f-68c7-4e56-bcdc-ba0ccb2aa15f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60646-Global7216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60646\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8373\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8373\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 6825,\r\n \"maxPrefixesAdvertisedV6\": 411,\r\n \"md5AuthenticationKey\": \"96e1229f1a5ac0c2e4e8d0f08aca2d9e\"\r\n },\r\n \"connectionIdentifier\": \"0a833152-ecb1-40f9-a222-109734ef55a8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4279-Global6784\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_4279\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5996\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5996\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9533,\r\n \"maxPrefixesAdvertisedV6\": 1070,\r\n \"md5AuthenticationKey\": \"5c6596342ec124b2af63e7a0587fd778\"\r\n },\r\n \"connectionIdentifier\": \"a15d518d-4502-4c23-84d2-22f23db31de1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/60935-Global5716\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_60935\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection771\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection771\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16829,\r\n \"maxPrefixesAdvertisedV6\": 1913,\r\n \"md5AuthenticationKey\": \"e6978716baef8643586d9c5550bb145f\"\r\n },\r\n \"connectionIdentifier\": \"fc7815dd-9810-496b-b22a-3932d60f3ea3\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3398-Global3790\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3398\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5312\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5312\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"1.188.147.0/31\",\r\n \"sessionPrefixV6\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"1.188.147.1\",\r\n \"microsoftSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9801\",\r\n \"peerSessionIPv4Address\": \"1.188.147.0\",\r\n \"peerSessionIPv6Address\": \"1bc:9331:67f4:87fb:29b5:7cba:c86f:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10933,\r\n \"maxPrefixesAdvertisedV6\": 1416,\r\n \"md5AuthenticationKey\": \"f5c4fdbbf67bf39ea7f672819443a8bc\"\r\n },\r\n \"connectionIdentifier\": \"5bcd8d64-0b61-4e5a-8263-8d4ea21a9110\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32686-Global3930\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32686\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8205\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8205\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"bd3cc92e-f1d3-4c92-bb09-010671084cd8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.160.231.0/31\",\r\n \"sessionPrefixV6\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"157.160.231.1\",\r\n \"microsoftSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e501\",\r\n \"peerSessionIPv4Address\": \"157.160.231.0\",\r\n \"peerSessionIPv6Address\": \"9da0:e72a:e016:acb9:ab65:4035:8104:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11714,\r\n \"maxPrefixesAdvertisedV6\": 1120,\r\n \"md5AuthenticationKey\": \"b0a43516ed1d48db5f5f06949792cbb0\"\r\n },\r\n \"connectionIdentifier\": \"7d1c5297-f009-408e-9b29-c57421c2f8c1\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/17252-Global7140\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_17252\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2040\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2040\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"5083537f-b6a8-4e4e-be82-ba56e525e655\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"4900f076-6bbb-4973-abc2-49171d221c9b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"30295231-964c-4aa0-94eb-21b672c07c19\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"efec4548-27f5-43e3-b379-710c6687cd89\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.51\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"c6e4ef27-303f-4328-9fe9-744ad7285984\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.54\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16223,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"adbc9d4d-34a5-4334-9e86-a8ee405ada48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"fe8b330b-647f-43cf-8ed7-1767e46daf95\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fa3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 886,\r\n \"md5AuthenticationKey\": \"4a3a05661aaf69deba02373d0d9848a0\"\r\n },\r\n \"connectionIdentifier\": \"f5fdd891-5b61-4f8f-ad88-2192c0fae0c7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19385-Global2700\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19385\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS9774\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS9774\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"767a25fb-482a-4de8-90c7-44f50e6a0590\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ccc44517-8c4a-4359-a7f3-401fa4d5d6b8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"9aaa78da-ef35-4d0e-bbb0-7da46aaf79ea\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"c50c466a-c260-4cab-b46a-709e840f73c5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.78\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"43c49727-d3fe-4d00-872d-7ad1fabc927b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.61\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9289,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"ed89d4a6-f609-4838-b7b1-bedace0e58e8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fbb\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"04eb48ba-3156-4de3-9e59-56f58b94ef65\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1faa\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 927,\r\n \"md5AuthenticationKey\": \"5078377eec32dff5b6db768e99878361\"\r\n },\r\n \"connectionIdentifier\": \"4b30fc13-0557-45ed-af7b-428ef64e9a1b\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/38121-Global6800\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_38121\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8508\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8508\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b9c2be73-348e-4bc6-adae-1f429fe50fcc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"aec70c2a-1911-47a6-9363-1f8cae7c8db1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.236.137\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b153ba82-7ef1-470b-a57d-66a0b7e6f09d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::293:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3cb306cc-afbf-4ac9-9ce7-192499ee4003\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/293-Global8506\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS293_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS293_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.20.46.0/31\",\r\n \"sessionPrefixV6\": \"b414:2e70:710b:b870:e704:7013:1c33:4300/127\",\r\n \"microsoftSessionIPv4Address\": \"180.20.46.1\",\r\n \"microsoftSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4301\",\r\n \"peerSessionIPv4Address\": \"180.20.46.0\",\r\n \"peerSessionIPv6Address\": \"b414:2e70:710b:b870:e704:7013:1c33:4300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7183,\r\n \"maxPrefixesAdvertisedV6\": 1576,\r\n \"md5AuthenticationKey\": \"7a24b847242eb9837a215004eabd4fe2\"\r\n },\r\n \"connectionIdentifier\": \"a7fae4b1-3ce2-441f-94e4-c2f53e71d5f8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5381-Global1967\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_5381\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection53\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection53\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.83.122.0/31\",\r\n \"sessionPrefixV6\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"19.83.122.1\",\r\n \"microsoftSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2701\",\r\n \"peerSessionIPv4Address\": \"19.83.122.0\",\r\n \"peerSessionIPv6Address\": \"1353:7a83:cae2:ce70:b21e:4e5:7c29:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"7ba251d8-def4-4f26-b1b3-ff2961ce4c55\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"201.99.39.0/31\",\r\n \"sessionPrefixV6\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00/127\",\r\n \"microsoftSessionIPv4Address\": \"201.99.39.1\",\r\n \"microsoftSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c01\",\r\n \"peerSessionIPv4Address\": \"201.99.39.0\",\r\n \"peerSessionIPv6Address\": \"c963:273d:c438:ab84:92cd:d9a6:f587:7c00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8610,\r\n \"maxPrefixesAdvertisedV6\": 1250,\r\n \"md5AuthenticationKey\": \"197756ff87d593c91b3639d1d4eb6726\"\r\n },\r\n \"connectionIdentifier\": \"116d22c4-06bf-4f60-8bfc-4566b2d1082a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62697-Global1922\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62697\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9700\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9700\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"30330c9c-8530-4382-aa73-bc8ee4096425\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"fcfcc7a8-5400-444e-90fe-a0dbdb79db73\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"86daab31-826e-4d8f-9c16-50be3c1cc249\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"907f7af9-eaab-4cdc-857d-cb75e9d4ca08\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.35\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"6d4d0342-d182-4dde-8d02-15965f98fd3b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.62\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16600,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"33897291-64e2-47ef-947e-416ec23397f2\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f90\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"58ddaf98-0ad8-4130-b876-533f89d4094d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fab\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"b07fa5d40a2e1508c3d02a5fa4ebc431\"\r\n },\r\n \"connectionIdentifier\": \"5ab62206-3e04-4e63-bb97-1945781c830a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46447-Global978\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_46447\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6348\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6348\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"72.62.182.0/31\",\r\n \"sessionPrefixV6\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"72.62.182.1\",\r\n \"microsoftSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db01\",\r\n \"peerSessionIPv4Address\": \"72.62.182.0\",\r\n \"peerSessionIPv6Address\": \"483e:b67d:579a:c7c5:6e6b:d39f:5cd7:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8532,\r\n \"maxPrefixesAdvertisedV6\": 1402,\r\n \"md5AuthenticationKey\": \"7fadf7587435a401fac69d14b46fbafc\"\r\n },\r\n \"connectionIdentifier\": \"69872a12-8863-442d-a7d1-03cddc56127a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/46638-Global2402\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_46638\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection327\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection327\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"26.86.40.0/31\",\r\n \"sessionPrefixV6\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"26.86.40.1\",\r\n \"microsoftSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d01\",\r\n \"peerSessionIPv4Address\": \"26.86.40.0\",\r\n \"peerSessionIPv6Address\": \"1a56:28f0:36b0:ad56:f62c:72e3:2679:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4335,\r\n \"maxPrefixesAdvertisedV6\": 623,\r\n \"md5AuthenticationKey\": \"c72efb13cbf4fb236889a3dd66524266\"\r\n },\r\n \"connectionIdentifier\": \"564b7709-f845-4200-a0f0-4e099965ba52\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42259-Global4439\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_42259\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection7916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection7916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"7a4e14cb-0f30-4c2f-9d53-6c2cd9fa87a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.144.93.0/31\",\r\n \"sessionPrefixV6\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"101.144.93.1\",\r\n \"microsoftSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a01\",\r\n \"peerSessionIPv4Address\": \"101.144.93.0\",\r\n \"peerSessionIPv6Address\": \"6590:5db7:1696:99c0:5d41:ab30:de7b:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11606,\r\n \"maxPrefixesAdvertisedV6\": 1296,\r\n \"md5AuthenticationKey\": \"8d5ba49bd1f51680320781905a18d7b4\"\r\n },\r\n \"connectionIdentifier\": \"1f7f6dea-1cf8-4d73-8e77-3185fbebba82\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41272-Global7358\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_41272\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1911\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1911\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.38.103.0/31\",\r\n \"sessionPrefixV6\": \"f426:6750:a75a:aa50:7935:7317:680b:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"244.38.103.1\",\r\n \"microsoftSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1401\",\r\n \"peerSessionIPv4Address\": \"244.38.103.0\",\r\n \"peerSessionIPv6Address\": \"f426:6750:a75a:aa50:7935:7317:680b:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1228,\r\n \"maxPrefixesAdvertisedV6\": 1801,\r\n \"md5AuthenticationKey\": \"98d7a206c67f03e59871931988c72eb2\"\r\n },\r\n \"connectionIdentifier\": \"9104cb9b-68ce-4895-8824-6c34a686e6e0\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/62737-Global7374\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_62737\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8360\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8360\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"14.9.222.0/31\",\r\n \"sessionPrefixV6\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"14.9.222.1\",\r\n \"microsoftSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db01\",\r\n \"peerSessionIPv4Address\": \"14.9.222.0\",\r\n \"peerSessionIPv6Address\": \"e09:de91:4f52:9a29:8f71:774e:f774:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"ec084ea0-757b-41d0-9825-eaf547511859\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15520,\r\n \"maxPrefixesAdvertisedV6\": 1909,\r\n \"md5AuthenticationKey\": \"eed06ac952c0a9df4a4c7cf9ce61d346\"\r\n },\r\n \"connectionIdentifier\": \"978b0b63-f979-4c4b-a4a7-814368d4f93a\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/988-Global3898\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_988\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5745\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5745\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17707,\r\n \"maxPrefixesAdvertisedV6\": 480,\r\n \"md5AuthenticationKey\": \"71bbf7232def60205a04721e0f722154\"\r\n },\r\n \"connectionIdentifier\": \"fb9d1483-c466-4e22-a6a1-13c02a1df6ed\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27822-Global9380\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27822\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection9957\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9957\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"132.6.82.0/31\",\r\n \"sessionPrefixV6\": \"8406:526b:1259:855e:deef:490c:23fa:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"132.6.82.1\",\r\n \"microsoftSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6001\",\r\n \"peerSessionIPv4Address\": \"132.6.82.0\",\r\n \"peerSessionIPv6Address\": \"8406:526b:1259:855e:deef:490c:23fa:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"ec643b08-9c69-48a8-a2d9-fe8f47685c54\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.4.164.0/31\",\r\n \"sessionPrefixV6\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"124.4.164.1\",\r\n \"microsoftSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6901\",\r\n \"peerSessionIPv4Address\": \"124.4.164.0\",\r\n \"peerSessionIPv6Address\": \"7c04:a4fd:a68b:a577:9ae1:db0e:7aaa:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5903,\r\n \"maxPrefixesAdvertisedV6\": 753,\r\n \"md5AuthenticationKey\": \"6fcd86697e5fac91e7a298576f81800b\"\r\n },\r\n \"connectionIdentifier\": \"daed42d1-0547-48ad-a3de-7127f378c862\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4457-Global4768\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4457\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection1769\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1769\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"126.41.242.0/31\",\r\n \"sessionPrefixV6\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"126.41.242.1\",\r\n \"microsoftSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f01\",\r\n \"peerSessionIPv4Address\": \"126.41.242.0\",\r\n \"peerSessionIPv6Address\": \"7e29:f276:e453:bf1b:2bb7:a159:3c85:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5168,\r\n \"maxPrefixesAdvertisedV6\": 1008,\r\n \"md5AuthenticationKey\": \"6c26585ffae85cbfdf6aa0daf4320ec9\"\r\n },\r\n \"connectionIdentifier\": \"e66f9263-c367-4da4-ac00-db4cd588e32b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13386-Global6814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_13386\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection81\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection81\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"183.130.94.0/31\",\r\n \"sessionPrefixV6\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"183.130.94.1\",\r\n \"microsoftSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac01\",\r\n \"peerSessionIPv4Address\": \"183.130.94.0\",\r\n \"peerSessionIPv6Address\": \"b782:5e6a:880e:9b92:c1a0:446d:106d:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1982,\r\n \"maxPrefixesAdvertisedV6\": 498,\r\n \"md5AuthenticationKey\": \"143c0ba4b802d74cc4e3581bb13384aa\"\r\n },\r\n \"connectionIdentifier\": \"7af5b5eb-e09a-4711-8de6-2710741bb1ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/27207-Global7473\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_27207\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection3103\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection3103\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"26bbec7c-1e28-4ddd-b58d-7bd8f8be5ade\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12168,\r\n \"maxPrefixesAdvertisedV6\": 1985,\r\n \"md5AuthenticationKey\": \"aa61e47897b0d1fa8138b12d288f42c6\"\r\n },\r\n \"connectionIdentifier\": \"6dcb956c-52c6-43db-b127-d31486831e0d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/10813-Global3979\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_10813\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7223\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7223\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.231.248.0/31\",\r\n \"sessionPrefixV6\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"24.231.248.1\",\r\n \"microsoftSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b501\",\r\n \"peerSessionIPv4Address\": \"24.231.248.0\",\r\n \"peerSessionIPv6Address\": \"18e7:f8f6:1fad:ca35:1c90:9e8a:323e:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 715,\r\n \"maxPrefixesAdvertisedV6\": 674,\r\n \"md5AuthenticationKey\": \"4680c8ad29418fedaa8ea1c1eed3f8d3\"\r\n },\r\n \"connectionIdentifier\": \"f4fe9ad5-c7f7-4fce-9b06-c203cc07f661\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/4964-Global4917\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_4964\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection9603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection9603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"180.93.16.0/31\",\r\n \"sessionPrefixV6\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500/127\",\r\n \"microsoftSessionIPv4Address\": \"180.93.16.1\",\r\n \"microsoftSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8501\",\r\n \"peerSessionIPv4Address\": \"180.93.16.0\",\r\n \"peerSessionIPv6Address\": \"b45d:10f1:4a46:81ee:30c9:7d21:4d93:8500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"13dd1202-c083-42ff-bdb7-cf2c66609336\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 4109,\r\n \"maxPrefixesAdvertisedV6\": 1036,\r\n \"md5AuthenticationKey\": \"aecc162aa6e8ae9777d6f5bbdd909efe\"\r\n },\r\n \"connectionIdentifier\": \"2633f4fa-8ef2-47ef-a337-4a3e2fde1ed8\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/3845-Global1054\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_3845\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3030\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3030\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.33.45.0/31\",\r\n \"sessionPrefixV6\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"98.33.45.1\",\r\n \"microsoftSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a201\",\r\n \"peerSessionIPv4Address\": \"98.33.45.0\",\r\n \"peerSessionIPv6Address\": \"6221:2dbd:ff92:b69e:84a6:d7d7:eb41:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3235,\r\n \"maxPrefixesAdvertisedV6\": 660,\r\n \"md5AuthenticationKey\": \"dd1ad81da0c43262138fdd45621b4fce\"\r\n },\r\n \"connectionIdentifier\": \"a5d263ad-f207-4370-b8fa-c41d4e4bfb0b\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/23912-Global6634\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_23912\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectPipeConnection8074\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection8074\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"68.244.26.0/31\",\r\n \"sessionPrefixV6\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"68.244.26.1\",\r\n \"microsoftSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f01\",\r\n \"peerSessionIPv4Address\": \"68.244.26.0\",\r\n \"peerSessionIPv6Address\": \"44f4:1a8b:dc0a:937e:4cbd:4609:d722:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"02617158-a0a1-4b38-be52-48a82291e52c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"98.106.15.0/31\",\r\n \"sessionPrefixV6\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"98.106.15.1\",\r\n \"microsoftSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e401\",\r\n \"peerSessionIPv4Address\": \"98.106.15.0\",\r\n \"peerSessionIPv6Address\": \"626a:f3e:d8ce:7f1c:cc6b:e4e5:1ca1:e400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12091,\r\n \"maxPrefixesAdvertisedV6\": 876,\r\n \"md5AuthenticationKey\": \"bf4d6a0c14dfd328911d141c4f6e5b0b\"\r\n },\r\n \"connectionIdentifier\": \"acbc2c96-0514-42f0-bf7e-7e990e3cf3bd\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33594-Global3903\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_33594\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9994\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9994\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6be23f2e-4425-4a0c-92aa-078d2dbded09\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"6eee85fd-d8b8-4cb6-ad28-331dacb1ffcd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f99\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1053,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"10f2afe8-a8fa-421c-a2d7-39dc5e69981d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.44\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11786,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b85f9d41447d080aefe8fc640a1fabc3\"\r\n },\r\n \"connectionIdentifier\": \"8f3cf999-01ac-4be8-89d6-7bade57408b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16793-Global5795\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16793\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8169\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8169\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17333,\r\n \"maxPrefixesAdvertisedV6\": 1699,\r\n \"md5AuthenticationKey\": \"8e033ac24a0aec29342b9e56a3c3c9da\"\r\n },\r\n \"connectionIdentifier\": \"3faa524b-3c7e-45b9-9730-23c74fcfde89\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29876-Global9478\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_29876\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4867\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4867\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"111.110.120.0/31\",\r\n \"sessionPrefixV6\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"111.110.120.1\",\r\n \"microsoftSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e501\",\r\n \"peerSessionIPv4Address\": \"111.110.120.0\",\r\n \"peerSessionIPv6Address\": \"6f6e:781d:e6f1:c9cc:eb61:d26b:1a45:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"2b032bec-573e-497f-90cb-c3bfae1d74f7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"144.9.187.0/31\",\r\n \"sessionPrefixV6\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000/127\",\r\n \"microsoftSessionIPv4Address\": \"144.9.187.1\",\r\n \"microsoftSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6001\",\r\n \"peerSessionIPv4Address\": \"144.9.187.0\",\r\n \"peerSessionIPv6Address\": \"9009:bb49:207c:cf0d:fce5:3793:219f:6000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17037,\r\n \"maxPrefixesAdvertisedV6\": 398,\r\n \"md5AuthenticationKey\": \"da311c3e35ed1ac1a32b23c496eb7e9e\"\r\n },\r\n \"connectionIdentifier\": \"a69dd9bf-f3f2-4c7a-adad-7575a0c2105e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/33040-Global7717\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_33040\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3613\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3613\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"195.207.169.0/31\",\r\n \"sessionPrefixV6\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"195.207.169.1\",\r\n \"microsoftSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee01\",\r\n \"peerSessionIPv4Address\": \"195.207.169.0\",\r\n \"peerSessionIPv6Address\": \"c3cf:a9ca:6f6d:aebf:285b:3f01:3f72:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"028d09fe-002a-43ea-a118-2bd1fb68a419\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5677,\r\n \"maxPrefixesAdvertisedV6\": 471,\r\n \"md5AuthenticationKey\": \"7334b140f891d7190c2ca7caeaf9eb6f\"\r\n },\r\n \"connectionIdentifier\": \"577e4919-6972-4483-8ce1-a105db563cf2\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56289-Global3276\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56289\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7695\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7695\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 71,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.133.234.0/31\",\r\n \"sessionPrefixV6\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"65.133.234.1\",\r\n \"microsoftSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2701\",\r\n \"peerSessionIPv4Address\": \"65.133.234.0\",\r\n \"peerSessionIPv6Address\": \"4185:ea90:c507:b05d:7222:72af:e3e7:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8004,\r\n \"maxPrefixesAdvertisedV6\": 355,\r\n \"md5AuthenticationKey\": \"2016403648c38d4be69f5be0e1200f4e\"\r\n },\r\n \"connectionIdentifier\": \"7959b9b5-7649-470d-98e3-6050a86e08b5\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36432-Global5808\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_36432\": \"value1\"\r\n },\r\n \"name\": \"DirectPipeConnection4733\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectPipeConnection4733\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::13\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"e67fb138-6396-45f7-872c-996f0fd36696\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.19\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"5b224d0a-eced-4484-8157-9e4db06cb1f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::20\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 233,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"55c7c67d-fa0b-426e-b9a8-014cf30465ab\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.32\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2655,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9bdeb31ba4f4975d12ce4cc284c7bff7\"\r\n },\r\n \"connectionIdentifier\": \"7894e86c-e880-45f6-acb9-a5b38c4a1b1a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6016-Global4041\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6016\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS6696\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS6696\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::24\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"d3bf0fca-3a44-4e63-9145-c4f702fb88be\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.36\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"eedebca3-7646-49be-b363-56655bd32bac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::34\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 963,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"645a0a4c-78ac-4b70-a5ff-6d6ae9499a63\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.52\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19346,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"841851da403b2e40b044d52457f72998\"\r\n },\r\n \"connectionIdentifier\": \"9cccbc68-3666-490b-9244-bb4b9971e172\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/59319-Global1353\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_59319\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS484\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS484\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"417870ae-07dd-4dbd-bd9b-c5c6119daa49\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"351effd8-21d4-43d5-9110-d45ffa3368dc\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"7204f4b4-8c51-4b4a-8348-f8efe48e18ce\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.30\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"3aab6d7a-58b9-4e0b-8a25-7d2952980baf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.70\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"32e25349-19b5-4a87-b3d5-0e76f604fed9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.81.80.0/23\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.81.80.68\",\r\n \"peerSessionIPv4Address\": \"206.81.80.41\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 8364,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"0dd98a7b-8507-479b-b25e-35ba9353c213\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1fb3\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"356ba959-f072-421c-9f3e-8534e8deda18\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 13,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2001:504:16::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:16::68:0:1f8b\",\r\n \"peerSessionIPv6Address\": \"2001:504:16::1f96\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 21,\r\n \"md5AuthenticationKey\": \"9900016caefe322f5c36b2c650886e17\"\r\n },\r\n \"connectionIdentifier\": \"cf96536c-f94b-40e7-adf4-aff4a3096dcb\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/49827-Global2680\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_49827\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS422\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS422\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::40\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"2edba332-2d94-4714-b3e4-98acbd7e1442\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.64\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"bd3bb0ae-ac8c-4206-837b-7f94d828a0c0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::14\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 1114,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"d12296b0-6854-49b3-bccc-18edf1ad241d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.20\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11847,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"bdcb61e5f1a2c14f97518302952255bb\"\r\n },\r\n \"connectionIdentifier\": \"babba121-4f55-4b76-acb3-6580769bafca\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/37437-Global7419\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_37437\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS8603\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS8603\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.17\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d7e1184f-1ca2-4de4-9144-2d632fd682af\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"71d13747-68ad-4acf-a286-c2e0a36ba82a\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.126.236.148\",\r\n \"peerSessionIPv4Address\": \"206.126.237.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5f1e2606-2eec-4794-a67c-9337322b928d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.126.236.0/22\",\r\n \"sessionPrefixV6\": \"2001:504:0:2::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:2::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:2::668:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"4e9112e0-9988-4c7a-a8e4-aa57daa742b8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/668-Global7167\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS668_Ashburn_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS668_Ashburn_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::16\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"6aa00aad-38ae-4ef8-85f5-bee4afa9cc0c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.22\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"1da43152-38f3-477f-a1eb-a198a0f6ad99\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"\",\r\n \"sessionPrefixV6\": \"2606:a980:0:3::/64\",\r\n \"microsoftSessionIPv6Address\": \"2606:a980:0:3::c\",\r\n \"peerSessionIPv6Address\": \"2606:a980:0:3::46\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 0,\r\n \"maxPrefixesAdvertisedV6\": 6,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"e78ead4d-d690-4269-8cee-7dec78d2e99f\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 1178,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.53.170.0/24\",\r\n \"sessionPrefixV6\": \"\",\r\n \"microsoftSessionIPv4Address\": \"206.53.170.12\",\r\n \"peerSessionIPv4Address\": \"206.53.170.70\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 16000,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"118e172a415a111d43c223973062a44a\"\r\n },\r\n \"connectionIdentifier\": \"c2efe8fe-577c-4cd8-86a3-e74cc9036656\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/53983-Global1983\"\r\n }\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_53983\": \"Active\"\r\n },\r\n \"name\": \"NewExchangePeeringCVS7750\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/NewExchangePeeringCVS7750\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.42.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.42.1\",\r\n \"peerSessionIPv4Address\": \"8.8.42.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"64ac698d-e467-40e4-92af-81be63aa5434\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.43.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.43.1\",\r\n \"peerSessionIPv4Address\": \"8.8.43.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1f56898d-dfb6-4396-9036-609f7a031242\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.44.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.44.1\",\r\n \"peerSessionIPv4Address\": \"8.8.44.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"000aa089-37fd-4a1d-b3b8-5b61defe3dd2\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.45.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.45.1\",\r\n \"peerSessionIPv4Address\": \"8.8.45.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"44df713c-a838-42c7-9297-e12ea209c9d0\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1157,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"8.8.46.0/31\",\r\n \"microsoftSessionIPv4Address\": \"8.8.46.1\",\r\n \"peerSessionIPv4Address\": \"8.8.46.0\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"manuallySelectedDevices_64ac698d-e467-40e4-92af-81be63aa5434\": \"osa02-96cbe-1a\",\r\n \"manuallySelectedDevices_1f56898d-dfb6-4396-9036-609f7a031242\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_000aa089-37fd-4a1d-b3b8-5b61defe3dd2\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_44df713c-a838-42c7-9297-e12ea209c9d0\": \"osa02-96cbe-1b\",\r\n \"manuallySelectedDevices_caf49a94-c8a6-4f6d-ac5b-30b0ee7d4f92\": \"osa02-96cbe-1b\"\r\n },\r\n \"name\": \"AS15169_Osaka_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/AS15169_Osaka_Direct/providers/Microsoft.Peering/peerings/AS15169_Osaka_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"67.170.56.0/31\",\r\n \"sessionPrefixV6\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"67.170.56.1\",\r\n \"microsoftSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d01\",\r\n \"peerSessionIPv4Address\": \"67.170.56.0\",\r\n \"peerSessionIPv6Address\": \"43aa:3809:2cf:ca00:3f8:38fa:a6c2:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"d5b94538-8d2d-48f3-96e3-2c50dec5ee07\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.213.192.0/31\",\r\n \"sessionPrefixV6\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500/127\",\r\n \"microsoftSessionIPv4Address\": \"216.213.192.1\",\r\n \"microsoftSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e501\",\r\n \"peerSessionIPv4Address\": \"216.213.192.0\",\r\n \"peerSessionIPv6Address\": \"d8d5:c016:e95e:d855:8a5f:9b86:e666:e500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17198,\r\n \"maxPrefixesAdvertisedV6\": 812,\r\n \"md5AuthenticationKey\": \"c7a0ab76d18d9864c25c04b1dfd0b50a\"\r\n },\r\n \"connectionIdentifier\": \"fc34f1c2-e760-4414-b093-d83895d3d982\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/64208-Global5081\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64208\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection8762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.92/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27f8/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.93\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fa\",\r\n \"peerSessionIPv4Address\": \"104.44.196.92\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27f9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"542a1f84-2e5a-4d7c-9fbd-88358669802d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 200000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.196.94/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::27fc/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.196.95\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::27fe\",\r\n \"peerSessionIPv4Address\": \"104.44.196.94\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::27fd\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"994d0e8e-13f2-4b4f-b5b9-a3a38039084f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 100000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"ProvisioningStarted\",\r\n \"connectionIdentifier\": \"76141d16-d48f-4fad-8895-09b7ad2f2cbe\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS15169\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"hello1\": \"world1\"\r\n },\r\n \"name\": \"AS15169_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS15169_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 200000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"microsoftTrackingId\": \"CAS-02438-P8H0N4\",\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Approved\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.128/30\",\r\n \"sessionPrefixV6\": \"2600:805:41f::2c/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.130\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:41f::2e\",\r\n \"peerSessionIPv4Address\": \"152.179.105.129\",\r\n \"peerSessionIPv6Address\": \"2600:805:41f::2d\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9f762646-542f-4a93-8839-98a4b6f0ea17\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 30000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.179.105.196/30\",\r\n \"sessionPrefixV6\": \"2600:805:46f::b8/126\",\r\n \"microsoftSessionIPv4Address\": \"152.179.105.198\",\r\n \"microsoftSessionIPv6Address\": \"2600:805:46f::ba\",\r\n \"peerSessionIPv4Address\": \"152.179.105.197\",\r\n \"peerSessionIPv6Address\": \"2600:805:46f::b9\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f596f5ff-5695-4d98-bd71-90b574b4c9bf\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS701\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS701_Chicago_Direct\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Chicago/providers/Microsoft.Peering/peerings/AS701_Chicago_Direct\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.241.142.0/31\",\r\n \"sessionPrefixV6\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"185.241.142.1\",\r\n \"microsoftSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1401\",\r\n \"peerSessionIPv4Address\": \"185.241.142.0\",\r\n \"peerSessionIPv6Address\": \"b9f1:8e65:9f12:7eb3:9a3b:18c6:3a8:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10251,\r\n \"maxPrefixesAdvertisedV6\": 1330,\r\n \"md5AuthenticationKey\": \"7780370c8643382d2eb160d97edd5f1c\"\r\n },\r\n \"connectionIdentifier\": \"97d2a745-4212-4a7d-9a76-b0dd9fb1cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/19424-Global6892\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_19424\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection1899\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection1899\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"124.186.194.0/31\",\r\n \"sessionPrefixV6\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"124.186.194.1\",\r\n \"microsoftSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2701\",\r\n \"peerSessionIPv4Address\": \"124.186.194.0\",\r\n \"peerSessionIPv6Address\": \"7cba:c27c:cd4f:ddf9:511c:cd00:494a:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19488,\r\n \"maxPrefixesAdvertisedV6\": 995,\r\n \"md5AuthenticationKey\": \"1b8696db27b02f2ccbd40cb2d55a4067\"\r\n },\r\n \"connectionIdentifier\": \"61353d2f-b779-4862-85b9-a11d2364101e\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21182-Global1966\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21182\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection504\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection504\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"efe39fc8-f9f4-4af3-b29f-8cf37fbdbe6c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"185.168.172.0/31\",\r\n \"sessionPrefixV6\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"185.168.172.1\",\r\n \"microsoftSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d201\",\r\n \"peerSessionIPv4Address\": \"185.168.172.0\",\r\n \"peerSessionIPv6Address\": \"b9a8:ace3:c6d6:b535:5276:ab8:d248:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 813,\r\n \"maxPrefixesAdvertisedV6\": 1309,\r\n \"md5AuthenticationKey\": \"f5e569ff8691c9a4f4086a471ba3ea20\"\r\n },\r\n \"connectionIdentifier\": \"6fcf0e6c-ea30-42ea-b385-3b93e7e6cf54\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/61037-Global7556\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_61037\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5336\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5336\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"155.122.153.0/31\",\r\n \"sessionPrefixV6\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00/127\",\r\n \"microsoftSessionIPv4Address\": \"155.122.153.1\",\r\n \"microsoftSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be01\",\r\n \"peerSessionIPv4Address\": \"155.122.153.0\",\r\n \"peerSessionIPv6Address\": \"9b7a:99b1:a24e:9215:1a8e:79ea:be29:be00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"19ce6ec4-bf64-46a2-b507-5aec4c40625a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"149.231.27.0/31\",\r\n \"sessionPrefixV6\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"149.231.27.1\",\r\n \"microsoftSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3001\",\r\n \"peerSessionIPv4Address\": \"149.231.27.0\",\r\n \"peerSessionIPv6Address\": \"95e7:1b3e:4e83:9550:af1c:df45:814:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9907,\r\n \"maxPrefixesAdvertisedV6\": 608,\r\n \"md5AuthenticationKey\": \"a32b5cba8da4d6666f9d400be44e768e\"\r\n },\r\n \"connectionIdentifier\": \"ce113ff6-1738-4243-afee-b97705152654\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/31184-Global450\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_31184\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7034\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7034\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.138.35.0/31\",\r\n \"sessionPrefixV6\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900/127\",\r\n \"microsoftSessionIPv4Address\": \"211.138.35.1\",\r\n \"microsoftSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9901\",\r\n \"peerSessionIPv4Address\": \"211.138.35.0\",\r\n \"peerSessionIPv6Address\": \"d38a:2324:6dce:a40e:68b2:ef0:61b1:9900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"e8e40d30-da85-4f82-9a16-3f586b901ed9\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.51.101.0/31\",\r\n \"sessionPrefixV6\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"162.51.101.1\",\r\n \"microsoftSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7301\",\r\n \"peerSessionIPv4Address\": \"162.51.101.0\",\r\n \"peerSessionIPv6Address\": \"a233:659d:35e1:a87e:16d7:dada:3719:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 13025,\r\n \"maxPrefixesAdvertisedV6\": 811,\r\n \"md5AuthenticationKey\": \"e30ec5fdf6383848eb436a1bc38263c9\"\r\n },\r\n \"connectionIdentifier\": \"0b7156cb-2231-468d-a4fd-73bdae981b1a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51635-Global745\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_51635\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection7400\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7400\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 63,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"254.78.99.0/31\",\r\n \"sessionPrefixV6\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"254.78.99.1\",\r\n \"microsoftSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3001\",\r\n \"peerSessionIPv4Address\": \"254.78.99.0\",\r\n \"peerSessionIPv6Address\": \"fe4e:6337:51f0:a4da:4f1a:a860:d535:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12412,\r\n \"maxPrefixesAdvertisedV6\": 512,\r\n \"md5AuthenticationKey\": \"86ae8704a360463ea89a054fbca75980\"\r\n },\r\n \"connectionIdentifier\": \"40696d34-789a-49e7-8b83-7bba62ed3ca7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/13957-Global9336\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13957\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7682\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7682\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"93.141.175.0/31\",\r\n \"sessionPrefixV6\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"93.141.175.1\",\r\n \"microsoftSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1401\",\r\n \"peerSessionIPv4Address\": \"93.141.175.0\",\r\n \"peerSessionIPv6Address\": \"5d8d:af4a:aac7:b9d9:1934:3c32:352c:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"e5a7caa5-c4b4-4416-af9c-a3adf2bf5403\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"70.25.104.0/31\",\r\n \"sessionPrefixV6\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"70.25.104.1\",\r\n \"microsoftSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b501\",\r\n \"peerSessionIPv4Address\": \"70.25.104.0\",\r\n \"peerSessionIPv6Address\": \"4619:6804:19d2:ad22:dd94:c54:9afd:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12582,\r\n \"maxPrefixesAdvertisedV6\": 482,\r\n \"md5AuthenticationKey\": \"17359540da91c75906b381088cbc94de\"\r\n },\r\n \"connectionIdentifier\": \"60839266-ac4c-44bc-b1b8-641df73aea9e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/379-Global6216\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_379\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection82\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection82\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"32.233.166.0/31\",\r\n \"sessionPrefixV6\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00/127\",\r\n \"microsoftSessionIPv4Address\": \"32.233.166.1\",\r\n \"microsoftSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac01\",\r\n \"peerSessionIPv4Address\": \"32.233.166.0\",\r\n \"peerSessionIPv6Address\": \"20e9:a664:8b7c:aa1b:619e:d88:dc8e:ac00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"57402fb7-1c9e-4ef6-bb44-4922de3af0a5\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"78.27.22.0/31\",\r\n \"sessionPrefixV6\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00/127\",\r\n \"microsoftSessionIPv4Address\": \"78.27.22.1\",\r\n \"microsoftSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab01\",\r\n \"peerSessionIPv4Address\": \"78.27.22.0\",\r\n \"peerSessionIPv6Address\": \"4e1b:1671:85a1:8c08:21a2:7b52:434c:ab00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11661,\r\n \"maxPrefixesAdvertisedV6\": 1867,\r\n \"md5AuthenticationKey\": \"b1dafa68f0228ba37f39183922a4b238\"\r\n },\r\n \"connectionIdentifier\": \"daea5573-1fc3-4593-a233-ea7b5f7f1b3f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34380-Global1014\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_34380\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection916\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection916\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"22.11.140.0/31\",\r\n \"sessionPrefixV6\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100/127\",\r\n \"microsoftSessionIPv4Address\": \"22.11.140.1\",\r\n \"microsoftSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d101\",\r\n \"peerSessionIPv4Address\": \"22.11.140.0\",\r\n \"peerSessionIPv6Address\": \"160b:8cfe:ba21:790f:d37e:e64c:a0c4:d100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"80ea5dc6-4d5d-4df0-93ef-21ddf6cf6c5d\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"134.226.190.0/31\",\r\n \"sessionPrefixV6\": \"86e2:be63:76e6:d683:2700:249:b574:4400/127\",\r\n \"microsoftSessionIPv4Address\": \"134.226.190.1\",\r\n \"microsoftSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4401\",\r\n \"peerSessionIPv4Address\": \"134.226.190.0\",\r\n \"peerSessionIPv6Address\": \"86e2:be63:76e6:d683:2700:249:b574:4400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7693,\r\n \"maxPrefixesAdvertisedV6\": 663,\r\n \"md5AuthenticationKey\": \"033a960d894a180bb44f101ebe108dbd\"\r\n },\r\n \"connectionIdentifier\": \"5330b4ae-5ead-4afb-a49a-f59dad3904a9\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57101-Global2897\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57101\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9371\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9371\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"211.65.65.0/31\",\r\n \"sessionPrefixV6\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700/127\",\r\n \"microsoftSessionIPv4Address\": \"211.65.65.1\",\r\n \"microsoftSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5701\",\r\n \"peerSessionIPv4Address\": \"211.65.65.0\",\r\n \"peerSessionIPv6Address\": \"d341:41a2:9493:dc90:1fed:1e1:3051:5700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"cc8d23e3-10fb-4780-9096-ea10f96dae6a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"142.228.109.0/31\",\r\n \"sessionPrefixV6\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"142.228.109.1\",\r\n \"microsoftSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a01\",\r\n \"peerSessionIPv4Address\": \"142.228.109.0\",\r\n \"peerSessionIPv6Address\": \"8ee4:6dd0:e2b4:b56a:6b0e:7047:5fc4:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11743,\r\n \"maxPrefixesAdvertisedV6\": 24,\r\n \"md5AuthenticationKey\": \"901ed649f7a8e54d9db2c1a55060e13e\"\r\n },\r\n \"connectionIdentifier\": \"237cfc2a-ad06-4253-af56-bce385789d35\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/57976-Global9981\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_57976\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9425\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9425\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"244.221.133.0/31\",\r\n \"sessionPrefixV6\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200/127\",\r\n \"microsoftSessionIPv4Address\": \"244.221.133.1\",\r\n \"microsoftSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d201\",\r\n \"peerSessionIPv4Address\": \"244.221.133.0\",\r\n \"peerSessionIPv6Address\": \"f4dd:85cf:ce1e:e2d1:3171:6509:38ab:d200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"67e045e5-89f3-4144-808b-cccf19494f8b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"131.189.112.0/31\",\r\n \"sessionPrefixV6\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00/127\",\r\n \"microsoftSessionIPv4Address\": \"131.189.112.1\",\r\n \"microsoftSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e01\",\r\n \"peerSessionIPv4Address\": \"131.189.112.0\",\r\n \"peerSessionIPv6Address\": \"83bd:70ea:391e:bce0:962a:3cfe:f29a:1e00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 19145,\r\n \"maxPrefixesAdvertisedV6\": 1119,\r\n \"md5AuthenticationKey\": \"7fdce5ea238e402050df80a879d40944\"\r\n },\r\n \"connectionIdentifier\": \"4ef0bc6f-789e-40fc-9dea-a9aabfa9486f\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/44308-Global8574\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_44308\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection9651\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9651\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"75.99.4.0/31\",\r\n \"sessionPrefixV6\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100/127\",\r\n \"microsoftSessionIPv4Address\": \"75.99.4.1\",\r\n \"microsoftSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:101\",\r\n \"peerSessionIPv4Address\": \"75.99.4.0\",\r\n \"peerSessionIPv6Address\": \"4b63:4f6:9562:e168:ff41:99ea:1fb2:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"6b3ad4ea-6d56-47bc-a6bc-815ba3ddf378\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"231.144.58.0/31\",\r\n \"sessionPrefixV6\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00/127\",\r\n \"microsoftSessionIPv4Address\": \"231.144.58.1\",\r\n \"microsoftSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f01\",\r\n \"peerSessionIPv4Address\": \"231.144.58.0\",\r\n \"peerSessionIPv6Address\": \"e790:3a70:e7c0:cea4:cab6:6a74:9a6:8f00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 822,\r\n \"maxPrefixesAdvertisedV6\": 542,\r\n \"md5AuthenticationKey\": \"9d877922319f51a3f5ad63d8696867ad\"\r\n },\r\n \"connectionIdentifier\": \"563b4b12-fab1-435c-a334-058f73fe2a8a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2611-Global9175\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2611\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection496\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection496\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.116.123\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"7f883a89-05be-4901-b304-05fc47accca4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"331da049-a2bb-46ac-9c41-5f72906ac7cf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8cb23af-e6df-4108-b88b-dd30ccb9d366\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ce0e9470-c3f7-4673-bc03-91ab3d9ad381\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.208.250\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ad2fae6b-272b-4e29-9ac0-2782c2e3c383\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"efe489e4-1f8a-4766-871a-728b018755fe\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global2824\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.190\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"12e7f7c6-2465-4fd0-9440-c216f6c2d582\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.191\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5d4f5837-bece-4493-a255-53962484beae\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/72-Global278\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS72_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS72_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"101.70.123.0/31\",\r\n \"sessionPrefixV6\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"101.70.123.1\",\r\n \"microsoftSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c801\",\r\n \"peerSessionIPv4Address\": \"101.70.123.0\",\r\n \"peerSessionIPv6Address\": \"6546:7b36:3c5a:d042:157c:9d22:ae1b:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"a8447c1e-d341-4da4-88bd-a76a9c0721c7\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.97.121.0/31\",\r\n \"sessionPrefixV6\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600/127\",\r\n \"microsoftSessionIPv4Address\": \"193.97.121.1\",\r\n \"microsoftSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8601\",\r\n \"peerSessionIPv4Address\": \"193.97.121.0\",\r\n \"peerSessionIPv6Address\": \"c161:79d0:5869:cc9e:4ebf:6ba8:4b37:8600\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18317,\r\n \"maxPrefixesAdvertisedV6\": 74,\r\n \"md5AuthenticationKey\": \"08b19105ce037ef6da1501b8c49d7e0c\"\r\n },\r\n \"connectionIdentifier\": \"cca4122e-a927-4b3d-9afc-a1b9da3ed3a1\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/54458-Global2919\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_54458\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7564\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7564\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1236,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"19.157.92.0/31\",\r\n \"sessionPrefixV6\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"19.157.92.1\",\r\n \"microsoftSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6901\",\r\n \"peerSessionIPv4Address\": \"19.157.92.0\",\r\n \"peerSessionIPv6Address\": \"139d:5c04:a31d:97ee:fae3:12f3:ad89:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1729,\r\n \"maxPrefixesAdvertisedV6\": 1565,\r\n \"md5AuthenticationKey\": \"704410701a7bff3e044b4f1139e534e5\"\r\n },\r\n \"connectionIdentifier\": \"d743b2bd-bea1-4e34-84f0-13ca2cb562bc\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/18517-Global1801\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_18517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8365\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8365\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"129.78.64.0/31\",\r\n \"sessionPrefixV6\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"129.78.64.1\",\r\n \"microsoftSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b501\",\r\n \"peerSessionIPv4Address\": \"129.78.64.0\",\r\n \"peerSessionIPv6Address\": \"814e:40ef:221b:d9be:bc8e:68a5:ff5f:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11782,\r\n \"maxPrefixesAdvertisedV6\": 882,\r\n \"md5AuthenticationKey\": \"a7408a9c0fbcc713ac36dec95b8a5f42\"\r\n },\r\n \"connectionIdentifier\": \"a235ddd3-c4ae-45b5-be43-0211362e2d55\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/20222-Global7444\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_20222\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8212\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8212\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"147.120.235.0/31\",\r\n \"sessionPrefixV6\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800/127\",\r\n \"microsoftSessionIPv4Address\": \"147.120.235.1\",\r\n \"microsoftSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c801\",\r\n \"peerSessionIPv4Address\": \"147.120.235.0\",\r\n \"peerSessionIPv6Address\": \"9378:eb43:3780:b22f:d680:bec:15d9:c800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"ebf6a328-6507-4787-acbb-cd424c9de916\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"36.52.67.0/31\",\r\n \"sessionPrefixV6\": \"2434:4356:60c:de62:834b:9a1e:6143:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"36.52.67.1\",\r\n \"microsoftSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f801\",\r\n \"peerSessionIPv4Address\": \"36.52.67.0\",\r\n \"peerSessionIPv6Address\": \"2434:4356:60c:de62:834b:9a1e:6143:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 9973,\r\n \"maxPrefixesAdvertisedV6\": 1257,\r\n \"md5AuthenticationKey\": \"ae09225468cd70e8ab988389a0099f96\"\r\n },\r\n \"connectionIdentifier\": \"d5ad7303-7003-42fb-b4e0-f7734a1f0f2b\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/35617-Global7735\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_35617\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3085\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3085\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"139.191.31.0/31\",\r\n \"sessionPrefixV6\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"139.191.31.1\",\r\n \"microsoftSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1401\",\r\n \"peerSessionIPv4Address\": \"139.191.31.0\",\r\n \"peerSessionIPv6Address\": \"8bbf:1f57:a4ec:9cc6:da37:aafc:9cea:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"71e1fddc-94c4-4b06-8989-a626f0d2c9f4\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"108.72.41.0/31\",\r\n \"sessionPrefixV6\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00/127\",\r\n \"microsoftSessionIPv4Address\": \"108.72.41.1\",\r\n \"microsoftSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf01\",\r\n \"peerSessionIPv4Address\": \"108.72.41.0\",\r\n \"peerSessionIPv6Address\": \"6c48:29a4:a829:af28:598a:c20:576b:bf00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7865,\r\n \"maxPrefixesAdvertisedV6\": 1318,\r\n \"md5AuthenticationKey\": \"5692e4695d1ca062b5c1ac4a3b4974ea\"\r\n },\r\n \"connectionIdentifier\": \"d6b1f7e0-e93b-437e-9cf2-203e5771c1a6\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/56428-Global1253\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_56428\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection8860\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection8860\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.94.237.0/31\",\r\n \"sessionPrefixV6\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.94.237.1\",\r\n \"microsoftSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b01\",\r\n \"peerSessionIPv4Address\": \"55.94.237.0\",\r\n \"peerSessionIPv6Address\": \"375e:edaa:1b71:b7d3:9d3d:3d66:77bd:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"30202584-a0c5-47ec-aa4d-dafb3beaeb2c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"73.136.152.0/31\",\r\n \"sessionPrefixV6\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"73.136.152.1\",\r\n \"microsoftSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d01\",\r\n \"peerSessionIPv4Address\": \"73.136.152.0\",\r\n \"peerSessionIPv6Address\": \"4988:98fe:30d6:8f43:b730:e0ad:8d37:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14342,\r\n \"maxPrefixesAdvertisedV6\": 337,\r\n \"md5AuthenticationKey\": \"a2b1a91f1c989f0c726c1ed6fefd3f6d\"\r\n },\r\n \"connectionIdentifier\": \"d5ac1b2e-6c36-4339-bf60-a5a70f0c6d61\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/5003-Global7139\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_5003\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2105\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2105\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"247.75.181.0/31\",\r\n \"sessionPrefixV6\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"247.75.181.1\",\r\n \"microsoftSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a01\",\r\n \"peerSessionIPv4Address\": \"247.75.181.0\",\r\n \"peerSessionIPv6Address\": \"f74b:b5c9:e522:c4f3:b0c:3a62:2be5:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 15835,\r\n \"maxPrefixesAdvertisedV6\": 563,\r\n \"md5AuthenticationKey\": \"585c293b6951a96b6bd7554816244c96\"\r\n },\r\n \"connectionIdentifier\": \"f386c9ea-6d73-47c4-aec0-0fa6a5eafe53\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34829-Global4677\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_34829\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3952\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3952\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"216.30.162.0/31\",\r\n \"sessionPrefixV6\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"216.30.162.1\",\r\n \"microsoftSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2701\",\r\n \"peerSessionIPv4Address\": \"216.30.162.0\",\r\n \"peerSessionIPv6Address\": \"d81e:a297:c29a:a1d3:d324:a994:17c6:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"22686c93-9228-40c3-b9e2-06024cb283bd\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"37.125.37.0/31\",\r\n \"sessionPrefixV6\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00/127\",\r\n \"microsoftSessionIPv4Address\": \"37.125.37.1\",\r\n \"microsoftSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a01\",\r\n \"peerSessionIPv4Address\": \"37.125.37.0\",\r\n \"peerSessionIPv6Address\": \"257d:25d7:df47:a7e0:cb10:a72c:92a3:3a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 12113,\r\n \"maxPrefixesAdvertisedV6\": 868,\r\n \"md5AuthenticationKey\": \"97920f8253e714f16485a365c3479713\"\r\n },\r\n \"connectionIdentifier\": \"8d56db3a-f0bd-4664-a11d-a1068d8938fe\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/16114-Global1956\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_16114\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2120\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2120\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"229.107.236.0/31\",\r\n \"sessionPrefixV6\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"229.107.236.1\",\r\n \"microsoftSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6901\",\r\n \"peerSessionIPv4Address\": \"229.107.236.0\",\r\n \"peerSessionIPv6Address\": \"e56b:ecf7:a9f8:b401:39df:a429:46cb:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"d03f51cb-ca9c-4d3c-a32d-c02c3b03bfaa\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"137.154.208.0/31\",\r\n \"sessionPrefixV6\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"137.154.208.1\",\r\n \"microsoftSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee01\",\r\n \"peerSessionIPv4Address\": \"137.154.208.0\",\r\n \"peerSessionIPv6Address\": \"899a:d0de:6724:8223:4961:e4b1:d90f:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18459,\r\n \"maxPrefixesAdvertisedV6\": 583,\r\n \"md5AuthenticationKey\": \"1422538a491bfd3a1c207b7d5b963929\"\r\n },\r\n \"connectionIdentifier\": \"b078e6b7-6347-459d-a015-d6b7479cf8c0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28075-Global7814\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28075\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7762\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7762\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"24.48.218.0/31\",\r\n \"sessionPrefixV6\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700/127\",\r\n \"microsoftSessionIPv4Address\": \"24.48.218.1\",\r\n \"microsoftSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f701\",\r\n \"peerSessionIPv4Address\": \"24.48.218.0\",\r\n \"peerSessionIPv6Address\": \"1830:da77:f8e9:93b3:6555:ac98:639e:f700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"bcdca94b-391e-4168-85f3-9da8b2a41a1f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"34.88.214.0/31\",\r\n \"sessionPrefixV6\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400/127\",\r\n \"microsoftSessionIPv4Address\": \"34.88.214.1\",\r\n \"microsoftSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1401\",\r\n \"peerSessionIPv4Address\": \"34.88.214.0\",\r\n \"peerSessionIPv6Address\": \"2258:d65e:a17f:8d3d:3a39:e1e1:cfc9:1400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17836,\r\n \"maxPrefixesAdvertisedV6\": 186,\r\n \"md5AuthenticationKey\": \"e8fa8826a7d73f4e6af8531ceaa53a8e\"\r\n },\r\n \"connectionIdentifier\": \"deeee639-bdb8-4d1b-9d21-bafa19a2fc1c\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/45517-Global4066\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_45517\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection5710\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5710\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"52.239.189.0/31\",\r\n \"sessionPrefixV6\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"52.239.189.1\",\r\n \"microsoftSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a201\",\r\n \"peerSessionIPv4Address\": \"52.239.189.0\",\r\n \"peerSessionIPv6Address\": \"34ef:bdaf:46d:d4b1:c3a2:690c:8483:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 7141,\r\n \"maxPrefixesAdvertisedV6\": 138,\r\n \"md5AuthenticationKey\": \"c2f11c2a70edd65d89edcc1273e6bb5f\"\r\n },\r\n \"connectionIdentifier\": \"1e7a420b-dbe2-4692-835c-553b4f72cf0f\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42464-Global4232\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_42464\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection3894\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3894\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"103.181.171.0/31\",\r\n \"sessionPrefixV6\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000/127\",\r\n \"microsoftSessionIPv4Address\": \"103.181.171.1\",\r\n \"microsoftSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3001\",\r\n \"peerSessionIPv4Address\": \"103.181.171.0\",\r\n \"peerSessionIPv6Address\": \"67b5:ab30:535e:b363:ef18:717b:a156:3000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"b20f9d94-06ff-4f52-b4fc-3e9708c4648b\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"188.205.251.0/31\",\r\n \"sessionPrefixV6\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800/127\",\r\n \"microsoftSessionIPv4Address\": \"188.205.251.1\",\r\n \"microsoftSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f801\",\r\n \"peerSessionIPv4Address\": \"188.205.251.0\",\r\n \"peerSessionIPv6Address\": \"bccd:fb5c:39e:cfd9:e34d:d103:9522:f800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1762,\r\n \"maxPrefixesAdvertisedV6\": 1739,\r\n \"md5AuthenticationKey\": \"3103884ab75fb20baf1bb68cd92cb987\"\r\n },\r\n \"connectionIdentifier\": \"a7dda619-8e63-47ae-91ae-09720e73dd7e\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/55557-Global4646\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_55557\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection2299\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2299\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"175.128.176.0/31\",\r\n \"sessionPrefixV6\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500/127\",\r\n \"microsoftSessionIPv4Address\": \"175.128.176.1\",\r\n \"microsoftSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b501\",\r\n \"peerSessionIPv4Address\": \"175.128.176.0\",\r\n \"peerSessionIPv6Address\": \"af80:b0fd:1c40:bcab:7d92:d56f:661d:b500\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"7a5d2ced-768e-42b2-a5a2-23befcc1ce36\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"162.234.132.0/31\",\r\n \"sessionPrefixV6\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100/127\",\r\n \"microsoftSessionIPv4Address\": \"162.234.132.1\",\r\n \"microsoftSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3101\",\r\n \"peerSessionIPv4Address\": \"162.234.132.0\",\r\n \"peerSessionIPv6Address\": \"a2ea:841c:5ca6:dfff:ce12:cccc:6b9:3100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14685,\r\n \"maxPrefixesAdvertisedV6\": 319,\r\n \"md5AuthenticationKey\": \"866dac777b4d5240638f1799f30e40a6\"\r\n },\r\n \"connectionIdentifier\": \"23b67039-418c-47d4-8f87-672a1bc98038\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/21718-Global4970\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_21718\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection2820\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection2820\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"152.85.75.0/31\",\r\n \"sessionPrefixV6\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800/127\",\r\n \"microsoftSessionIPv4Address\": \"152.85.75.1\",\r\n \"microsoftSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9801\",\r\n \"peerSessionIPv4Address\": \"152.85.75.0\",\r\n \"peerSessionIPv6Address\": \"9855:4b38:6586:7872:89b7:b39f:fc4e:9800\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"51306af0-535a-4f93-b982-d6e715948f2a\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.247.130.0/31\",\r\n \"sessionPrefixV6\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000/127\",\r\n \"microsoftSessionIPv4Address\": \"80.247.130.1\",\r\n \"microsoftSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9001\",\r\n \"peerSessionIPv4Address\": \"80.247.130.0\",\r\n \"peerSessionIPv6Address\": \"50f7:8269:ea2d:dd2d:6ab4:338f:d5c7:9000\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2521,\r\n \"maxPrefixesAdvertisedV6\": 1811,\r\n \"md5AuthenticationKey\": \"774b0e028c897b3753ed48f61b955bc7\"\r\n },\r\n \"connectionIdentifier\": \"701bebfc-992b-4e50-bcc1-875bc917a3a0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/48055-Global3575\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_48055\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4062\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4062\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Unlimited\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Unlimited\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"157.86.5.0/31\",\r\n \"sessionPrefixV6\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300/127\",\r\n \"microsoftSessionIPv4Address\": \"157.86.5.1\",\r\n \"microsoftSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a301\",\r\n \"peerSessionIPv4Address\": \"157.86.5.0\",\r\n \"peerSessionIPv6Address\": \"9d56:5a9:7db:e33a:63a0:3227:50a4:a300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"93b6a793-ca54-4bb2-9eb0-d582ca04fde6\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"191.133.12.0/31\",\r\n \"sessionPrefixV6\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200/127\",\r\n \"microsoftSessionIPv4Address\": \"191.133.12.1\",\r\n \"microsoftSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a201\",\r\n \"peerSessionIPv4Address\": \"191.133.12.0\",\r\n \"peerSessionIPv6Address\": \"bf85:cd8:f3dd:7a78:5ae:b26b:b9bd:a200\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11231,\r\n \"maxPrefixesAdvertisedV6\": 1496,\r\n \"md5AuthenticationKey\": \"289f0f03bfeac1ee7951b813b7530f44\"\r\n },\r\n \"connectionIdentifier\": \"66128cbf-88da-4d2d-9433-f23e1ea9ae06\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52421-Global6227\"\r\n },\r\n \"directPeeringType\": \"Cdn\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_52421\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection4712\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection4712\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"159.197.53.0/31\",\r\n \"sessionPrefixV6\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00/127\",\r\n \"microsoftSessionIPv4Address\": \"159.197.53.1\",\r\n \"microsoftSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b01\",\r\n \"peerSessionIPv4Address\": \"159.197.53.0\",\r\n \"peerSessionIPv6Address\": \"9fc5:35a3:1ede:c55c:3c3b:681:44de:b00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 1593,\r\n \"maxPrefixesAdvertisedV6\": 869,\r\n \"md5AuthenticationKey\": \"2016e74020f9b789bc3cabbd5fcfda05\"\r\n },\r\n \"connectionIdentifier\": \"9eaeac01-0444-4c4c-a967-7c87a1c4f55d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25255-Global5963\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25255\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection5737\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection5737\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"177.165.254.0/31\",\r\n \"sessionPrefixV6\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00/127\",\r\n \"microsoftSessionIPv4Address\": \"177.165.254.1\",\r\n \"microsoftSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db01\",\r\n \"peerSessionIPv4Address\": \"177.165.254.0\",\r\n \"peerSessionIPv6Address\": \"b1a5:fe76:5a08:d64e:e69:9cba:29f8:db00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14754,\r\n \"maxPrefixesAdvertisedV6\": 445,\r\n \"md5AuthenticationKey\": \"55c206ed3830619b6df45fbf51cd09a4\"\r\n },\r\n \"connectionIdentifier\": \"9687a2ef-a4f1-42ba-9ece-1926839cbe8d\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/6783-Global437\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_6783\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6568\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6568\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"55.167.207.0/31\",\r\n \"sessionPrefixV6\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"55.167.207.1\",\r\n \"microsoftSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d01\",\r\n \"peerSessionIPv4Address\": \"55.167.207.0\",\r\n \"peerSessionIPv6Address\": \"37a7:cf2b:f4ac:7f51:e502:4b74:a81d:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"c38241f0-2e4e-4c82-b626-12da88cf7dac\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"65.207.204.0/31\",\r\n \"sessionPrefixV6\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900/127\",\r\n \"microsoftSessionIPv4Address\": \"65.207.204.1\",\r\n \"microsoftSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6901\",\r\n \"peerSessionIPv4Address\": \"65.207.204.0\",\r\n \"peerSessionIPv6Address\": \"41cf:cc12:9e42:79db:bbe7:7fbd:1447:6900\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 14743,\r\n \"maxPrefixesAdvertisedV6\": 1160,\r\n \"md5AuthenticationKey\": \"517c726eb5e42185ef8ef2edc5dc5df9\"\r\n },\r\n \"connectionIdentifier\": \"962ac2c9-47e7-409e-be99-f7cd0c2eeb2a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32837-Global5224\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32837\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection9736\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection9736\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 80000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"57.204.29.0/31\",\r\n \"sessionPrefixV6\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"57.204.29.1\",\r\n \"microsoftSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7301\",\r\n \"peerSessionIPv4Address\": \"57.204.29.0\",\r\n \"peerSessionIPv6Address\": \"39cc:1da4:3274:99f4:76d9:11bf:6bf8:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 17424,\r\n \"maxPrefixesAdvertisedV6\": 665,\r\n \"md5AuthenticationKey\": \"6d7041094f7a46e95e55b5d84877a8bb\"\r\n },\r\n \"connectionIdentifier\": \"ec0ac197-a882-4634-88e3-88eeb085ac50\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2247-Global6056\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_2247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection3744\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection3744\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"170.236.50.0/31\",\r\n \"sessionPrefixV6\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700/127\",\r\n \"microsoftSessionIPv4Address\": \"170.236.50.1\",\r\n \"microsoftSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2701\",\r\n \"peerSessionIPv4Address\": \"170.236.50.0\",\r\n \"peerSessionIPv6Address\": \"aaec:328a:c774:bfe6:1220:3bca:b008:2700\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"6cf7cf6c-5677-4c91-b089-ce631eda55e8\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 40000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"62.96.156.0/31\",\r\n \"sessionPrefixV6\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100/127\",\r\n \"microsoftSessionIPv4Address\": \"62.96.156.1\",\r\n \"microsoftSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:101\",\r\n \"peerSessionIPv4Address\": \"62.96.156.0\",\r\n \"peerSessionIPv6Address\": \"3e60:9c17:873f:96b9:e14b:ab64:210d:100\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18919,\r\n \"maxPrefixesAdvertisedV6\": 567,\r\n \"md5AuthenticationKey\": \"1cc4e661a896821c65ca92fc7a7e1a4f\"\r\n },\r\n \"connectionIdentifier\": \"5fff76ca-082a-4201-a5b2-f032076f3ff0\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/25517-Global7446\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_25517\": \"value1\"\r\n },\r\n \"name\": \"DirectOneConnection6874\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6874\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.137.61\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"24999918-1a24-409c-96e1-ca57870dfe98\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"92124ec6-30ae-4398-a8d4-8c3ca8fc2f66\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv4Address\": \"208.115.136.27\",\r\n \"peerSessionIPv4Address\": \"208.115.136.31\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"431c5028-3e6f-48e5-a22a-85b1df6ff155\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 2,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"208.115.136.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:4::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:4::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:4::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"5136b3f7-5de7-4343-9706-ca6fa53261b0\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.108.115.47\",\r\n \"peerSessionIPv4Address\": \"206.108.115.21\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1bd51316-1259-4729-b03f-e6940c1110d4\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 944,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.108.115.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:38:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:38:1:0:a500:42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"c624ccd1-568d-41f4-9ed1-e48b36401f48\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.57\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"bc009cbe-ed12-4b3b-99ef-a033ac82aa80\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::57\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"caf72971-c457-4aad-ae2f-fc43158829ac\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.41.110.58\",\r\n \"peerSessionIPv4Address\": \"206.41.110.42\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ec58692d-9f3b-4981-a94a-8bc84dbf3571\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 239,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.41.110.0/24\",\r\n \"sessionPrefixV6\": \"2001:504:41:110::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:41:110::58\",\r\n \"peerSessionIPv6Address\": \"2001:504:41:110::42\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"3d137bc4-08d6-428c-919c-47c6adfbec0a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global4647\"\r\n }\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS42_Chicago_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Chicago_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 90000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"91.104.97.0/31\",\r\n \"sessionPrefixV6\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00/127\",\r\n \"microsoftSessionIPv4Address\": \"91.104.97.1\",\r\n \"microsoftSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee01\",\r\n \"peerSessionIPv4Address\": \"91.104.97.0\",\r\n \"peerSessionIPv6Address\": \"5b68:61d1:6cff:9f36:885d:76e7:7251:ee00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10012,\r\n \"maxPrefixesAdvertisedV6\": 1757,\r\n \"md5AuthenticationKey\": \"5163206124f87c80eed8bad3ba6c423c\"\r\n },\r\n \"connectionIdentifier\": \"12d64126-3092-4394-a288-b41d637083ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/51940-Global4386\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_51940\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection6364\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection6364\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"221.105.62.0/31\",\r\n \"sessionPrefixV6\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300/127\",\r\n \"microsoftSessionIPv4Address\": \"221.105.62.1\",\r\n \"microsoftSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7301\",\r\n \"peerSessionIPv4Address\": \"221.105.62.0\",\r\n \"peerSessionIPv6Address\": \"dd69:3e89:3d2a:d51a:f5d1:352b:9c7c:7300\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"082f560c-9f24-405a-be63-3384abf57d2f\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 30000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"114.220.168.0/31\",\r\n \"sessionPrefixV6\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00/127\",\r\n \"microsoftSessionIPv4Address\": \"114.220.168.1\",\r\n \"microsoftSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d01\",\r\n \"peerSessionIPv4Address\": \"114.220.168.0\",\r\n \"peerSessionIPv6Address\": \"72dc:a817:fdf4:aced:c4fc:a6c5:d80:4d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 5601,\r\n \"maxPrefixesAdvertisedV6\": 858,\r\n \"md5AuthenticationKey\": \"64a789cc43c96a49391ad7a8aba0a783\"\r\n },\r\n \"connectionIdentifier\": \"664a4e12-906a-4538-88d0-3153815221f7\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/41580-Global4786\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_41580\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection941\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection941\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b2b250d6-7b3a-4533-a05f-a860b995cb05\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f3411d09-9adc-4a9c-8feb-075f7bc36cb5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.50\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"df1d303c-3f22-498c-badd-dd186b16bab8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:109:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"ae8eca97-a508-41fc-8086-433fdb86a2f8\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/109-Global6698\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS109_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS109_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.112\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"53105795-6cf2-4250-b887-117f79e4885b\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv4Address\": \"193.239.117.16\",\r\n \"peerSessionIPv4Address\": \"193.239.117.113\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"a8942623-7b94-4b2a-abac-e2f7d9796761\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"dde4aac0-63d0-44b5-86c9-caef39af6663\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 64,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"193.239.116.0/22\",\r\n \"sessionPrefixV6\": \"2001:7f8:13::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:13::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:13::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"84d6aed5-5200-4bf3-8256-2e5143b6c985\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.160\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"429d2b15-bec7-4ac3-ad95-afdc16c664f1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.21\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8cbeb370-ad75-4223-be63-0aeb8488f5f8\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"9ed05631-57c4-4b39-85fa-939fdb0bbac9\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b4332c58-db74-4a76-a65c-917767f819e5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv4Address\": \"80.249.209.20\",\r\n \"peerSessionIPv4Address\": \"80.249.211.183\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"1e3df46c-f2f5-4b79-834f-bdde368dff04\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"b5b23fa2-3026-4e64-9e9e-2e3e497d618c\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 26,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"80.249.208.0/21\",\r\n \"sessionPrefixV6\": \"2001:7f8:1::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:7f8:1::a500:8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:7f8:1::a500:714:2\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"2b98dd15-3389-4692-bc09-ce148d87793e\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/714-Global3147\"\r\n }\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"AS714_Amsterdam_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS714_Amsterdam_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 70000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 104,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"178.239.224.0/31\",\r\n \"sessionPrefixV6\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00/127\",\r\n \"microsoftSessionIPv4Address\": \"178.239.224.1\",\r\n \"microsoftSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d01\",\r\n \"peerSessionIPv4Address\": \"178.239.224.0\",\r\n \"peerSessionIPv6Address\": \"b2ef:e0f7:3343:9ecd:562e:a9c8:5958:1d00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 3388,\r\n \"maxPrefixesAdvertisedV6\": 443,\r\n \"md5AuthenticationKey\": \"0fd8210422aa88edc0d6f7c6f8efdd9e\"\r\n },\r\n \"connectionIdentifier\": \"2438d80a-f2a1-4909-8005-f1bc83fb74ca\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/32247-Global1543\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_32247\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"DirectOneConnection7557\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/DirectOneConnection7557\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"104.44.14.34/31\",\r\n \"sessionPrefixV6\": \"2a01:111:2000:1::2044/126\",\r\n \"microsoftSessionIPv4Address\": \"104.44.14.35\",\r\n \"microsoftSessionIPv6Address\": \"2a01:111:2000:1::2046\",\r\n \"peerSessionIPv4Address\": \"104.44.14.34\",\r\n \"peerSessionIPv6Address\": \"2a01:111:2000:1::2045\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"f2456e3c-7f9f-45d1-9c0d-f36e76bffb71\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"provisionedBandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 1922,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"4.68.74.180/30\",\r\n \"sessionPrefixV6\": \"2001:1900:4:3::208/126\",\r\n \"microsoftSessionIPv4Address\": \"4.68.74.182\",\r\n \"microsoftSessionIPv6Address\": \"2001:1900:4:3::20a\",\r\n \"peerSessionIPv4Address\": \"4.68.74.181\",\r\n \"peerSessionIPv6Address\": \"2001:1900:4:3::209\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"d4610950-97b5-4158-b05d-201812641c59\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS3356\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"Portland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/CenturyLink/providers/Microsoft.Peering/peerings/Portland\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.17\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"8bbbfe9f-9d97-456a-9b27-cb98b416cbb1\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:1\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"090ee743-b122-46eb-8d25-840001b725f6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv4Address\": \"206.223.118.65\",\r\n \"peerSessionIPv4Address\": \"206.223.118.224\",\r\n \"sessionStateV4\": \"Established\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"67b8a9ae-de2c-4d97-965e-84eff3255406\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 3,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.223.118.0/23\",\r\n \"sessionPrefixV6\": \"2001:504:0:5::/64\",\r\n \"microsoftSessionIPv6Address\": \"2001:504:0:5::8075:2\",\r\n \"peerSessionIPv6Address\": \"2001:504:0:5::42:1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"Established\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 2000\r\n },\r\n \"connectionIdentifier\": \"26097e38-4998-42e0-b214-9e9df2bff652\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/42-Global9194\"\r\n }\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_813288\": \"Approved\"\r\n },\r\n \"name\": \"AS42_Dallas_Exchange\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/Building40/providers/Microsoft.Peering/peerings/AS42_Dallas_Exchange\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "659fc3cb-e73b-49f3-b8ff-e057a5ba18c2" + "8dd873b5-2f4b-4e0a-9290-2f3b8f095272" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-request-id": [ - "b6cf992f-3f6b-4632-a30f-a700fe539187" + "c01a2360-7d1c-44b5-9230-facece3c3ae1" ], - "Date": [ - "Wed, 08 Apr 2020 21:57:40 GMT" + "x-ms-correlation-request-id": [ + "c01a2360-7d1c-44b5-9230-facece3c3ae1" ], - "Content-Length": [ - "72252" + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T074756Z:c01a2360-7d1c-44b5-9230-facece3c3ae1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 09 Apr 2021 07:47:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2581" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"peeringLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"legacyPeerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceCountries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-01-01-preview\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceProviderAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"peeringServices\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-10-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2020-10-01\",\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&api-version=2020-01-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestUri": "//subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering?api-version=2021-01-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzNlOTE5ZjlhLTRlMjYtNDczNi1hYThkLWQ1OTZkOWE0OTIzOS9yZXNvdXJjZUdyb3Vwcy90ZXN0Q2Fycmllci9wcm92aWRlcnMvTWljcm9zb2Z0LlBlZXJpbmcvcGVlcmluZ3MvVGVzdFByb2R1Y3Rpb25SZWFkeUZhY2lsaXR5UGVlcmluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a9734a-1188-42d2-89bf-32040f61c0d3" + "8dd873b5-2f4b-4e0a-9290-2f3b8f095272" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Cache-Control": [ + "no-cache" ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "ccb55b8b-0bbd-4b03-97bc-20243c17eb85" + "a95e784a-f3fe-41b3-be33-c036bdefd2ad" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "59" + ], + "x-ms-correlation-request-id": [ + "b80d85bb-b60a-423a-b698-9e4917c27c4f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T074757Z:b80d85bb-b60a-423a-b698-9e4917c27c4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 08 Apr 2020 21:57:40 GMT" + "Fri, 09 Apr 2021 07:47:57 GMT" ], "Content-Length": [ - "72252" + "1175" ], "Content-Type": [ "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"511 11th Ave S\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 803,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/803\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 100004,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d592b65d-45eb-4494-954e-9abbf2cf2081\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"TestProductionReadyFacilityPeering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/rg9225/providers/Microsoft.Peering/peerings/Direct_UseForPeeringService8017?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JnOTIyNS9wcm92aWRlcnMvTWljcm9zb2Z0LlBlZXJpbmcvcGVlcmluZ3MvRGlyZWN0X1VzZUZvclBlZXJpbmdTZXJ2aWNlODAxNz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"51368fe9-a815-409e-bcf8-79e79844a25c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.209.87.0/31\",\r\n \"sessionPrefixV6\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400/127\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"cecb18a0-93a1-494b-84e5-385ece1ea974\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1634-Global312\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\"\r\n },\r\n \"location\": \"local\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883404ee-5b0f-4ff8-a91d-ec192a60fd4d" + "4db1d836-a9b6-404c-93e7-05e40bdadc04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1630" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Cache-Control": [ + "no-cache" ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "f48ccee5-b271-4658-9ad9-f53db242e25d" + "9acc5ad6-aa80-46cb-9156-def66b860a19" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "58" + ], + "x-ms-correlation-request-id": [ + "b2c62e6d-9a6a-4e2a-b4f1-c12ff034ee69" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T074757Z:b2c62e6d-9a6a-4e2a-b4f1-c12ff034ee69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 08 Apr 2020 21:57:40 GMT" + "Fri, 09 Apr 2021 07:47:56 GMT" ], "Content-Length": [ - "2979" + "1175" ], "Content-Type": [ "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"51368fe9-a815-409e-bcf8-79e79844a25c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.209.87.0/31\",\r\n \"sessionPrefixV6\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"203.209.87.1\",\r\n \"microsoftSessionIPv6Address\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e401\",\r\n \"peerSessionIPv4Address\": \"203.209.87.0\",\r\n \"peerSessionIPv6Address\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"cecb18a0-93a1-494b-84e5-385ece1ea974\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1634-Global312\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n },\r\n \"eTag\": \"20e68379-fa43-4b54-9eed-a692b99cbf95\",\r\n \"name\": \"Direct_UseForPeeringService8017\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/rg9225/providers/Microsoft.Peering/peerings/Direct_UseForPeeringService8017\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 100004,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"d592b65d-45eb-4494-954e-9abbf2cf2081\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"name\": \"TestProductionReadyFacilityPeering\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/rg9225/providers/Microsoft.Peering/peerings/Direct_UseForPeeringService8017?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JnOTIyNS9wcm92aWRlcnMvTWljcm9zb2Z0LlBlZXJpbmcvcGVlcmluZ3MvRGlyZWN0X1VzZUZvclBlZXJpbmdTZXJ2aWNlODAxNz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/testCarrier/providers/Microsoft.Peering/peerings/TestProductionReadyFacilityPeering?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Rlc3RDYXJyaWVyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9UZXN0UHJvZHVjdGlvblJlYWR5RmFjaWxpdHlQZWVyaW5nP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"51368fe9-a815-409e-bcf8-79e79844a25c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.209.87.0/31\",\r\n \"sessionPrefixV6\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"203.209.87.1\",\r\n \"microsoftSessionIPv6Address\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e401\",\r\n \"peerSessionIPv4Address\": \"203.209.87.0\",\r\n \"peerSessionIPv6Address\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"cecb18a0-93a1-494b-84e5-385ece1ea974\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1634-Global312\"\r\n }\r\n },\r\n \"peeringLocation\": \"Chicago\"\r\n },\r\n \"location\": \"local\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 20000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 100004,\r\n \"connectionIdentifier\": \"d592b65d-45eb-4494-954e-9abbf2cf2081\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/TestVerizon\"\r\n }\r\n },\r\n \"peeringLocation\": \"Kiev\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "26e80dd1-5e34-47ab-980a-8e3dfe833bc5" + "b834511b-a5c6-4888-b65a-b4dc17c0146d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2232" + "716" ] }, "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Cache-Control": [ + "no-cache" ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "5d4d7be9-e6c5-4f77-85b1-30d954fde3bb" - ], - "Date": [ - "Wed, 08 Apr 2020 21:57:40 GMT" + "b58c2d20-7d91-44a4-b041-1f2ddb6fac71" ], - "Content-Length": [ - "2979" + "x-ms-failure-cause": [ + "service" ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 60000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"51368fe9-a815-409e-bcf8-79e79844a25c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.209.87.0/31\",\r\n \"sessionPrefixV6\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"203.209.87.1\",\r\n \"microsoftSessionIPv6Address\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e401\",\r\n \"peerSessionIPv4Address\": \"203.209.87.0\",\r\n \"peerSessionIPv6Address\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"cecb18a0-93a1-494b-84e5-385ece1ea974\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1634-Global312\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n },\r\n \"eTag\": \"07925f45-6e68-41e2-91a2-4009a85b62b0\",\r\n \"name\": \"Direct_UseForPeeringService8017\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/rg9225/providers/Microsoft.Peering/peerings/Direct_UseForPeeringService8017\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/rg9225/providers/Microsoft.Peering/peerings/Direct_UseForPeeringService8017?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JnOTIyNS9wcm92aWRlcnMvTWljcm9zb2Z0LlBlZXJpbmcvcGVlcmluZ3MvRGlyZWN0X1VzZUZvclBlZXJpbmdTZXJ2aWNlODAxNz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "05dd46a1-cb09-44a5-9e93-31735d944dab" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "59" ], - "Accept-Language": [ - "en-US" + "x-ms-correlation-request-id": [ + "271b38b1-6a1d-4b4f-91a4-394ebb8c30b9" ], - "User-Agent": [ - "FxVersion/4.6.28516.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-routing-request-id": [ + "NORTHEUROPE:20210409T074823Z:271b38b1-6a1d-4b4f-91a4-394ebb8c30b9" ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "daf6097a-fc03-4667-a696-ec45c54cb891" + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 08 Apr 2020 21:57:40 GMT" - ], - "Content-Length": [ - "2970" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"Active\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"206.247.165.0/31\",\r\n \"sessionPrefixV6\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00/127\",\r\n \"microsoftSessionIPv4Address\": \"206.247.165.1\",\r\n \"microsoftSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a01\",\r\n \"peerSessionIPv4Address\": \"206.247.165.0\",\r\n \"peerSessionIPv6Address\": \"cef7:a5b1:1803:a849:fd3f:744b:ab9c:a00\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"51368fe9-a815-409e-bcf8-79e79844a25c\"\r\n },\r\n {\r\n \"bandwidthInMbps\": 50000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 7,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"203.209.87.0/31\",\r\n \"sessionPrefixV6\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400/127\",\r\n \"microsoftSessionIPv4Address\": \"203.209.87.1\",\r\n \"microsoftSessionIPv6Address\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e401\",\r\n \"peerSessionIPv4Address\": \"203.209.87.0\",\r\n \"peerSessionIPv6Address\": \"cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 10695,\r\n \"maxPrefixesAdvertisedV6\": 536,\r\n \"md5AuthenticationKey\": \"ad16ac32303bf26d57180422f369c425\"\r\n },\r\n \"connectionIdentifier\": \"cecb18a0-93a1-494b-84e5-385ece1ea974\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1634-Global312\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n },\r\n \"eTag\": \"20e68379-fa43-4b54-9eed-a692b99cbf95\",\r\n \"name\": \"Direct_UseForPeeringService8017\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/rg9225/providers/Microsoft.Peering/peerings/Direct_UseForPeeringService8017\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7809ec79-a26f-4a9c-a82a-ab20ddf76fac" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28516.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "6474b9c2-8ba7-4282-9949-8075d8774d55" + "Fri, 09 Apr 2021 07:48:22 GMT" ], - "Date": [ - "Wed, 08 Apr 2020 21:57:40 GMT" + "Connection": [ + "close" ], "Content-Length": [ - "2123" + "619" ], "Content-Type": [ "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 1634,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS1634-Global9058.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS1634-Global9058.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS1634-Global9058\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"1634-Global312\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/1634-Global312\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 36238,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS36238-Global4600.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS36238-Global4600.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS36238-Global4600\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"36238-Global9968\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/36238-Global9968\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n },\r\n {\r\n \"properties\": {\r\n \"peerAsn\": 34402,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS34402-Global4354.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS34402-Global4354.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS34402-Global4354\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"34402-Global9524\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34402-Global9524\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34402-Global9524?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNDQwMi1HbG9iYWw5NTI0P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c9fd8ff9-a02a-4597-97f4-ff552b92b374" ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28516.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Expires": [ + "-1" ] }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "67652088-3ab2-4ecd-93c7-72229a892301" - ], - "Date": [ - "Wed, 08 Apr 2020 21:57:40 GMT" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadArgument\",\r\n \"message\": \"Connection DirectConnection=PeeringDBFacilityId=100004|MicrosoftDeviceId=|MicrosoftPortId=|ConnectionState=None|OperationState=None|ConnectionProvisioningState=None|BgpSession=|LastUpdatedTimeUtc=1/1/0001 12:00:00 AM|LastTransitionTimeUtc=1/1/0001 12:00:00 AM|ConnectionIdentifier=d592b65d-45eb-4494-954e-9abbf2cf2081|TfsWorkItemIds=|ErrorMessage=|CrmIncidentId=|ConnectionRemovalSource=None|BandwidthInMbps=20000|SessionAddressProvider=Microsoft|UseForPeeringService=False|ProvisionedBandwidthInMbps=0|MicrosoftTrackingId=|RocJobId= has no sessions\"\r\n }\r\n}", + "StatusCode": 500 } ], - "Names": { - "Test-SetNewBandwidth": [ - "rg9225", - "34402-Global9524", - "AS34402-Global4354", - "1634-Global312", - "AS1634-Global9058", - "Direct_UseForPeeringService8017" - ] - }, + "Names": {}, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "bandwidth": "50000", - "Hash": "ad16ac32303bf26d57180422f369c425", - "MaxPrefixV4": "10695", - "MaxPrefixV6": "536", - "sessionv4": "203.209.87.0/31", - "sessionv6": "cbd1:5738:db3b:8ea6:6c69:ad00:e8c2:e400/127", - "newBandwidth": "60000" + "newBandwidth": "20000" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewIP.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewIP.json index e70e96528efd..0b6dc1aa063d 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewIP.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewIP.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yODIxOS1HbG9iYWw4ODA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTY1MS1HbG9iYWwzMDM1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28219,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28219-Global6290\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29651,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29651-Global2032\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "be3d0ce5-ee51-4db7-9ebd-66b4bfcb736f" + "a88f1c42-5497-4999-a5af-1f3d62cc235f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "53c29c85-115c-4333-86cf-e1464e6a4ca1" + "9efd90d0-85f5-4197-8925-254c3052d27c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "f146fc4b-4df7-4bce-bc84-44c9f3348c63" + "150406d0-cca2-4668-84ef-4781c6bf210f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212549Z:f146fc4b-4df7-4bce-bc84-44c9f3348c63" + "NORTHEUROPE:20210409T074413Z:150406d0-cca2-4668-84ef-4781c6bf210f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:49 GMT" + "Fri, 09 Apr 2021 07:44:13 GMT" ], "Content-Length": [ - "611" + "612" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28219,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28219-Global6290\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"28219-Global8804\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29651,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29651-Global2032\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29651-Global3035\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yODIxOS1HbG9iYWw4ODA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTY1MS1HbG9iYWwzMDM1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28219,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28219-Global6290\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29651,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29651-Global2032\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "876cdceb-f1f9-415b-9979-2c450c55497e" + "f18ab325-08d2-413d-9b9d-06d1b2629b72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "c72ff435-c706-4d2b-9185-70d75eab917e" + "11474846-1bc7-40dc-b7d6-8007c7cc5b0b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "58" ], "x-ms-correlation-request-id": [ - "fc6cb43d-b011-4594-8a48-73302877d8d7" + "3fdce1d7-34bc-452a-b711-bb6d11ce8b9f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212550Z:fc6cb43d-b011-4594-8a48-73302877d8d7" + "NORTHEUROPE:20210409T074414Z:3fdce1d7-34bc-452a-b711-bb6d11ce8b9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:50 GMT" + "Fri, 09 Apr 2021 07:44:14 GMT" ], "Content-Length": [ "612" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28219,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28219-Global6290\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"28219-Global8804\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29651,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29651-Global2032\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29651-Global3035\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6695?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzY2OTU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg2914?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzI5MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c02b1f4f-b407-470b-99e3-1eab752300b5" + "6f4153d6-168c-4029-a959-b02500cf2a7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "14999" ], "x-ms-request-id": [ - "db2c5a0a-af37-49d6-be97-29e533d2f2e0" + "d1abb71c-695e-4329-aba6-f21f2f94c57d" ], "x-ms-correlation-request-id": [ - "db2c5a0a-af37-49d6-be97-29e533d2f2e0" + "d1abb71c-695e-4329-aba6-f21f2f94c57d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212553Z:db2c5a0a-af37-49d6-be97-29e533d2f2e0" + "NORTHEUROPE:20210409T074418Z:d1abb71c-695e-4329-aba6-f21f2f94c57d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,7 +180,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:53 GMT" + "Fri, 09 Apr 2021 07:44:17 GMT" ], "Content-Length": [ "102" @@ -196,22 +196,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6695?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzY2OTU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg2914?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzI5MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58453de2-0cf3-4991-a034-75a0765c79ab" + "ded0959b-ee0c-4dc8-8743-470f660ab2bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -225,13 +225,13 @@ "14998" ], "x-ms-request-id": [ - "3c44510f-79bb-423f-8590-81669cdf3e8f" + "31d9b459-1361-4c45-a22e-ca120bb80878" ], "x-ms-correlation-request-id": [ - "3c44510f-79bb-423f-8590-81669cdf3e8f" + "31d9b459-1361-4c45-a22e-ca120bb80878" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212604Z:3c44510f-79bb-423f-8590-81669cdf3e8f" + "NORTHEUROPE:20210409T074430Z:31d9b459-1361-4c45-a22e-ca120bb80878" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:26:04 GMT" + "Fri, 09 Apr 2021 07:44:30 GMT" ], "Content-Length": [ "0" @@ -253,22 +253,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6695?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzY2OTU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg2914?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzI5MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d435a074-4f17-4972-82b7-5f67ffcc454d" + "6f4153d6-168c-4029-a959-b02500cf2a7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -288,13 +288,13 @@ "1199" ], "x-ms-request-id": [ - "195ddcb0-e090-4ec0-b3c9-0f00e6491771" + "31305f3f-b0ab-466e-bfd5-ec5bd49e5062" ], "x-ms-correlation-request-id": [ - "195ddcb0-e090-4ec0-b3c9-0f00e6491771" + "31305f3f-b0ab-466e-bfd5-ec5bd49e5062" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212554Z:195ddcb0-e090-4ec0-b3c9-0f00e6491771" + "NORTHEUROPE:20210409T074420Z:31305f3f-b0ab-466e-bfd5-ec5bd49e5062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:54 GMT" + "Fri, 09 Apr 2021 07:44:19 GMT" ], "Content-Length": [ "220" @@ -315,26 +315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6695\",\r\n \"name\": \"MockRg6695\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg2914\",\r\n \"name\": \"MockRg2914\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yODIxOS1HbG9iYWw4ODA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTY1MS1HbG9iYWwzMDM1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d1442c7-9d36-4739-a6ef-15588eeb8ec5" + "1283d564-5e4d-468e-889b-7e15795aee3d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -345,16 +345,16 @@ "no-cache" ], "x-ms-request-id": [ - "d04a7ac1-5889-411d-88dd-127db337df89" + "abca7cc5-3fbd-4ad1-8edc-33dbfde52e34" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "a0151a9c-df09-4204-b64f-b34749868e6c" + "ff061b86-a10a-4e1e-a553-72982f05029e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212555Z:a0151a9c-df09-4204-b64f-b34749868e6c" + "NORTHEUROPE:20210409T074420Z:ff061b86-a10a-4e1e-a553-72982f05029e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:55 GMT" + "Fri, 09 Apr 2021 07:44:20 GMT" ], "Content-Length": [ "612" @@ -375,26 +375,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 28219,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS28219-Global6290.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS28219-Global6290\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"28219-Global8804\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 29651,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS29651-Global2032.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS29651-Global2032\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"29651-Global3035\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a372642-8e65-40c5-a3f4-d14e869245d6" + "f269320e-76d1-4e5e-945e-4e5d2fdd6f4d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -405,16 +405,16 @@ "no-cache" ], "x-ms-request-id": [ - "d6908630-57a2-4fd7-b741-87ce0f9551e9" + "e22aaedd-db85-4acc-9085-7e7fc8b44451" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "dfe3de39-db64-4341-a550-dcfd4dbdd324" + "49507497-bb94-4fcb-911e-2a0e0fe2f716" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212555Z:dfe3de39-db64-4341-a550-dcfd4dbdd324" + "NORTHEUROPE:20210409T074421Z:49507497-bb94-4fcb-911e-2a0e0fe2f716" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,10 +423,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:55 GMT" + "Fri, 09 Apr 2021 07:44:20 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,26 +435,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e23893e3-69a5-428a-ab79-b6fb41991ac8" + "4ef16017-eaaa-4b69-9e56-77c7ee5f87d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -465,16 +465,16 @@ "no-cache" ], "x-ms-request-id": [ - "79d0f04f-0d3a-4bc5-8802-d7745d4e744e" + "1ec36d05-5c5f-40f7-8171-ad389d934949" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "a8857cfc-ca1a-438f-abc2-5af595de0a26" + "1f5780aa-e2d2-45b4-b3c6-5598fd6dceb5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212556Z:a8857cfc-ca1a-438f-abc2-5af595de0a26" + "NORTHEUROPE:20210409T074422Z:1f5780aa-e2d2-45b4-b3c6-5598fd6dceb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,10 +483,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:56 GMT" + "Fri, 09 Apr 2021 07:44:21 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,26 +495,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6695/providers/Microsoft.Peering/peerings/ps832?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODMyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg2914/providers/Microsoft.Peering/peerings/ps976?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzI5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzOTc2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.165\",\r\n \"maxPrefixesAdvertisedV4\": 11668,\r\n \"md5AuthenticationKey\": \"9a740c5d8c6aa3b57c09080a01d8e10a\"\r\n },\r\n \"connectionIdentifier\": \"5cb9535b-145d-481f-9591-6423688f0ca6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.166\",\r\n \"maxPrefixesAdvertisedV4\": 11668,\r\n \"md5AuthenticationKey\": \"9a740c5d8c6aa3b57c09080a01d8e10a\"\r\n },\r\n \"connectionIdentifier\": \"2606ea66-9e66-47e8-a314-94a4061156ec\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_35013\": \"Active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.146\",\r\n \"maxPrefixesAdvertisedV4\": 11657,\r\n \"md5AuthenticationKey\": \"410dbdbf198482ea27197eb484b1f9f1\"\r\n },\r\n \"connectionIdentifier\": \"580fb5c5-eedc-48d0-868b-5b779bfade6d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.148\",\r\n \"maxPrefixesAdvertisedV4\": 11657,\r\n \"md5AuthenticationKey\": \"410dbdbf198482ea27197eb484b1f9f1\"\r\n },\r\n \"connectionIdentifier\": \"8406fb35-2178-49af-a16b-3fc5fe8456c9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_40484\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4698ed4-0532-466d-8faa-20779ffe9549" + "4ef16017-eaaa-4b69-9e56-77c7ee5f87d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,16 +531,16 @@ "no-cache" ], "x-ms-request-id": [ - "bf3932e2-1989-4770-80dd-ffaa2c98e33c" + "6603fb51-2084-4eef-960e-8348a37df522" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "773d21f9-a0a0-4406-9b18-1bf9320c6a35" + "686a1f25-c7bc-44bb-8339-a9bdbcdad768" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212559Z:773d21f9-a0a0-4406-9b18-1bf9320c6a35" + "NORTHEUROPE:20210409T074426Z:686a1f25-c7bc-44bb-8339-a9bdbcdad768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,10 +549,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:59 GMT" + "Fri, 09 Apr 2021 07:44:26 GMT" ], "Content-Length": [ - "2070" + "2019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -561,26 +561,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.165\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11668,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9a740c5d8c6aa3b57c09080a01d8e10a\"\r\n },\r\n \"connectionIdentifier\": \"5cb9535b-145d-481f-9591-6423688f0ca6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.166\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11668,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9a740c5d8c6aa3b57c09080a01d8e10a\"\r\n },\r\n \"connectionIdentifier\": \"2606ea66-9e66-47e8-a314-94a4061156ec\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_35013\": \"Active\"\r\n },\r\n \"eTag\": \"0673b382-803b-4bb3-9467-74177db18843\",\r\n \"name\": \"ps832\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6695/providers/Microsoft.Peering/peerings/ps832\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.146\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11657,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"410dbdbf198482ea27197eb484b1f9f1\"\r\n },\r\n \"connectionIdentifier\": \"580fb5c5-eedc-48d0-868b-5b779bfade6d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.148\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11657,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"410dbdbf198482ea27197eb484b1f9f1\"\r\n },\r\n \"connectionIdentifier\": \"8406fb35-2178-49af-a16b-3fc5fe8456c9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_40484\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps976\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg2914/providers/Microsoft.Peering/peerings/ps976\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6695/providers/Microsoft.Peering/peerings/ps832?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODMyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg2914/providers/Microsoft.Peering/peerings/ps976?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzI5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzOTc2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.187\",\r\n \"maxPrefixesAdvertisedV4\": 11668,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9a740c5d8c6aa3b57c09080a01d8e10a\"\r\n },\r\n \"connectionIdentifier\": \"5cb9535b-145d-481f-9591-6423688f0ca6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.166\",\r\n \"maxPrefixesAdvertisedV4\": 11668,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9a740c5d8c6aa3b57c09080a01d8e10a\"\r\n },\r\n \"connectionIdentifier\": \"2606ea66-9e66-47e8-a314-94a4061156ec\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_35013\": \"Active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.162\",\r\n \"maxPrefixesAdvertisedV4\": 11657,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"410dbdbf198482ea27197eb484b1f9f1\"\r\n },\r\n \"connectionIdentifier\": \"580fb5c5-eedc-48d0-868b-5b779bfade6d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.148\",\r\n \"maxPrefixesAdvertisedV4\": 11657,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"410dbdbf198482ea27197eb484b1f9f1\"\r\n },\r\n \"connectionIdentifier\": \"8406fb35-2178-49af-a16b-3fc5fe8456c9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_40484\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c0ba772a-34aa-478b-9c02-ab2e9efc1924" + "1af8380f-8cb9-4bdf-b8ac-566ff6e3ba79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -597,16 +597,16 @@ "no-cache" ], "x-ms-request-id": [ - "b1b8c0d4-2b43-4f73-a4fd-a4e3dffcb252" + "107165c9-0279-4648-96e0-f96327deaabe" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "ba1a3f93-7217-4a06-8e93-d809fb81378e" + "1da618f5-9abf-4317-b1ec-ff94c1079e0e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212600Z:ba1a3f93-7217-4a06-8e93-d809fb81378e" + "NORTHEUROPE:20210409T074427Z:1da618f5-9abf-4317-b1ec-ff94c1079e0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,10 +615,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:59 GMT" + "Fri, 09 Apr 2021 07:44:26 GMT" ], "Content-Length": [ - "121" + "144" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,26 +627,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Md5AuthenticationKey and MaxPrefix updates are not yet supported\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Md5AuthenticationKey and MaxPrefix updates are not yet supported\"\r\n }\r\n}", "StatusCode": 405 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6695/providers/Microsoft.Peering/peerings/ps832?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODMyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg2914/providers/Microsoft.Peering/peerings/ps976?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzI5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzOTc2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90d65fba-6c66-448c-97e3-e832d23d279e" + "18869482-bd2a-4d8c-974a-5cac6a908383" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -657,16 +657,16 @@ "no-cache" ], "x-ms-request-id": [ - "c9984896-2dd7-4a54-959c-46afe16378f3" + "6608cda2-75ef-4886-8dee-3fb068615233" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "3b51d856-d1fb-42dc-a2d1-115bf64175f7" + "1c449157-58e9-45d3-a769-ed586fee30e1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212600Z:3b51d856-d1fb-42dc-a2d1-115bf64175f7" + "NORTHEUROPE:20210409T074426Z:1c449157-58e9-45d3-a769-ed586fee30e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,10 +675,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:25:59 GMT" + "Fri, 09 Apr 2021 07:44:26 GMT" ], "Content-Length": [ - "2070" + "2019" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,26 +687,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.165\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11668,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9a740c5d8c6aa3b57c09080a01d8e10a\"\r\n },\r\n \"connectionIdentifier\": \"5cb9535b-145d-481f-9591-6423688f0ca6\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.166\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11668,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"9a740c5d8c6aa3b57c09080a01d8e10a\"\r\n },\r\n \"connectionIdentifier\": \"2606ea66-9e66-47e8-a314-94a4061156ec\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_35013\": \"Active\"\r\n },\r\n \"eTag\": \"0673b382-803b-4bb3-9467-74177db18843\",\r\n \"name\": \"ps832\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6695/providers/Microsoft.Peering/peerings/ps832\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.146\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11657,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"410dbdbf198482ea27197eb484b1f9f1\"\r\n },\r\n \"connectionIdentifier\": \"580fb5c5-eedc-48d0-868b-5b779bfade6d\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.148\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 11657,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"410dbdbf198482ea27197eb484b1f9f1\"\r\n },\r\n \"connectionIdentifier\": \"8406fb35-2178-49af-a16b-3fc5fe8456c9\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_40484\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps976\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg2914/providers/Microsoft.Peering/peerings/ps976\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6695/providers/Microsoft.Peering/peerings/ps832?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzY2OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODMyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg2914/providers/Microsoft.Peering/peerings/ps976?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzI5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzOTc2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc4e3827-729f-4be0-9b58-4fdc204dd5d3" + "0fba3d1b-743e-4fe9-a877-0cc37a9a6a75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -717,16 +717,16 @@ "no-cache" ], "x-ms-request-id": [ - "974ff018-62bb-4add-abac-c4f7d3c8e504" + "fcb12124-e5dc-4016-a7c2-48f8a8693886" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "791df8eb-f516-45ba-869f-cef615565e1b" + "f9227aef-154b-40b2-9d42-e12326981061" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212603Z:791df8eb-f516-45ba-869f-cef615565e1b" + "NORTHEUROPE:20210409T074430Z:f9227aef-154b-40b2-9d42-e12326981061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,7 +735,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:26:03 GMT" + "Fri, 09 Apr 2021 07:44:29 GMT" ], "Expires": [ "-1" @@ -748,22 +748,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/28219-Global8804?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yODIxOS1HbG9iYWw4ODA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/29651-Global3035?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yOTY1MS1HbG9iYWwzMDM1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43a672bb-ea2d-4bef-895b-b42d519ce349" + "4352c7cf-86df-440f-91cb-c7bf436d97fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -774,16 +774,16 @@ "no-cache" ], "x-ms-request-id": [ - "177e15b9-5d94-4117-8f88-4d5b0bba136e" + "4329be98-0cdd-4e03-a424-892c5bd85bab" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "30e10763-5fcc-452b-a7a7-4de45061a28b" + "0be5a841-ea68-488f-ac77-9052cca9177e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212603Z:30e10763-5fcc-452b-a7a7-4de45061a28b" + "NORTHEUROPE:20210409T074430Z:0be5a841-ea68-488f-ac77-9052cca9177e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +792,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:26:03 GMT" + "Fri, 09 Apr 2021 07:44:29 GMT" ], "Expires": [ "-1" @@ -805,22 +805,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6695?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzY2OTU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg2914?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzI5MTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "647c4aaa-9aa7-4231-9c74-dc47f733a7c9" + "ded0959b-ee0c-4dc8-8743-470f660ab2bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -831,22 +831,22 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2Njk1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkcyOTE0LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-request-id": [ - "b2250372-fcbc-4015-835e-175dbd084ae4" + "3c4cce98-cd7a-41ea-bc1f-d148624552cb" ], "x-ms-correlation-request-id": [ - "b2250372-fcbc-4015-835e-175dbd084ae4" + "3c4cce98-cd7a-41ea-bc1f-d148624552cb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212605Z:b2250372-fcbc-4015-835e-175dbd084ae4" + "NORTHEUROPE:20210409T074431Z:3c4cce98-cd7a-41ea-bc1f-d148624552cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -855,7 +855,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:26:05 GMT" + "Fri, 09 Apr 2021 07:44:31 GMT" ], "Expires": [ "-1" @@ -868,16 +868,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2Njk1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzJOamsxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkcyOTE0LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrY3lPVEUwTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ded0959b-ee0c-4dc8-8743-470f660ab2bc" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -888,7 +891,7 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2Njk1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkcyOTE0LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" @@ -897,13 +900,13 @@ "14997" ], "x-ms-request-id": [ - "e56fd7b8-2080-46b4-b23c-e5ccb2c75bb4" + "7ff26d4c-c047-45e2-9099-036a335a7da6" ], "x-ms-correlation-request-id": [ - "e56fd7b8-2080-46b4-b23c-e5ccb2c75bb4" + "7ff26d4c-c047-45e2-9099-036a335a7da6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212620Z:e56fd7b8-2080-46b4-b23c-e5ccb2c75bb4" + "NORTHEUROPE:20210409T074447Z:7ff26d4c-c047-45e2-9099-036a335a7da6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +915,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:26:20 GMT" + "Fri, 09 Apr 2021 07:44:47 GMT" ], "Expires": [ "-1" @@ -925,16 +928,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2Njk1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzJOamsxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkcyOTE0LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrY3lPVEUwTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ded0959b-ee0c-4dc8-8743-470f660ab2bc" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -945,7 +951,7 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2Njk1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkcyOTE0LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" @@ -954,13 +960,13 @@ "14996" ], "x-ms-request-id": [ - "ada9388b-5879-4265-bcc6-7ba23727cf97" + "af965dc3-6104-4918-ba44-d24ea630866d" ], "x-ms-correlation-request-id": [ - "ada9388b-5879-4265-bcc6-7ba23727cf97" + "af965dc3-6104-4918-ba44-d24ea630866d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212636Z:ada9388b-5879-4265-bcc6-7ba23727cf97" + "NORTHEUROPE:20210409T074502Z:af965dc3-6104-4918-ba44-d24ea630866d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,7 +975,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:26:36 GMT" + "Fri, 09 Apr 2021 07:45:02 GMT" ], "Expires": [ "-1" @@ -982,16 +988,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2Njk1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzJOamsxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkcyOTE0LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrY3lPVEUwTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ded0959b-ee0c-4dc8-8743-470f660ab2bc" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -1005,13 +1014,13 @@ "14995" ], "x-ms-request-id": [ - "ac43f864-552b-41fa-8dda-802574a47a67" + "10965a7a-c5e9-402a-82c0-84cff3f40a05" ], "x-ms-correlation-request-id": [ - "ac43f864-552b-41fa-8dda-802574a47a67" + "10965a7a-c5e9-402a-82c0-84cff3f40a05" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212651Z:ac43f864-552b-41fa-8dda-802574a47a67" + "NORTHEUROPE:20210409T074518Z:10965a7a-c5e9-402a-82c0-84cff3f40a05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1020,7 +1029,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:26:50 GMT" + "Fri, 09 Apr 2021 07:45:18 GMT" ], "Expires": [ "-1" @@ -1033,16 +1042,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2Njk1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzJOamsxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkcyOTE0LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrY3lPVEUwTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ded0959b-ee0c-4dc8-8743-470f660ab2bc" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -1056,13 +1068,13 @@ "14994" ], "x-ms-request-id": [ - "fb433e6d-608e-4c91-9f85-243158d127a0" + "9e54ac9b-37aa-461c-9100-7b3744e9937b" ], "x-ms-correlation-request-id": [ - "fb433e6d-608e-4c91-9f85-243158d127a0" + "9e54ac9b-37aa-461c-9100-7b3744e9937b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T212651Z:fb433e6d-608e-4c91-9f85-243158d127a0" + "NORTHEUROPE:20210409T074518Z:9e54ac9b-37aa-461c-9100-7b3744e9937b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,7 +1083,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 21:26:51 GMT" + "Fri, 09 Apr 2021 07:45:18 GMT" ], "Expires": [ "-1" @@ -1086,17 +1098,17 @@ ], "Names": { "Test-SetNewIP": [ - "28219-Global8804", - "AS28219-Global6290", - "MockRg6695", - "ps832" + "29651-Global3035", + "AS29651-Global2032", + "MockRg2914", + "ps976" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "9a740c5d8c6aa3b57c09080a01d8e10a", - "MaxPrefixV4": "11668", - "offSet": "22", - "newIpAddress": "10.12.97.187" + "Hash": "410dbdbf198482ea27197eb484b1f9f1", + "MaxPrefixV4": "11657", + "offSet": "16", + "newIpAddress": "10.12.97.162" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewIPv6.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewIPv6.json index d01095621e21..2b7e1b024808 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewIPv6.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewIPv6.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MjQ4Ni1HbG9iYWw1NDM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODI3NC1HbG9iYWwyNTY/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52486-Global5422\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58274,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58274-Global2152\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb4f725-b9b6-4dfd-bee1-6b563ca87f1d" + "86595d76-e373-456b-9758-5f2f9cb14e9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "9af4cd81-5f18-4d00-a608-aff1049bda9e" + "08010a48-4f82-4c2a-858f-46a6ddfc6a6b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "8d62a743-b925-4c83-9010-aa1c08f96e9b" + "124c93f9-60fc-430a-9523-57328f07f5bd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230017Z:8d62a743-b925-4c83-9010-aa1c08f96e9b" + "NORTHEUROPE:20210409T074909Z:124c93f9-60fc-430a-9523-57328f07f5bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:16 GMT" + "Fri, 09 Apr 2021 07:49:09 GMT" ], "Content-Length": [ - "611" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52486-Global5422\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"52486-Global5437\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58274,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58274-Global2152\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"58274-Global256\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MjQ4Ni1HbG9iYWw1NDM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODI3NC1HbG9iYWwyNTY/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52486-Global5422\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58274,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58274-Global2152\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "264a3354-e0c4-4b68-b2ab-c84bdfbbd8dd" + "73b7c2c7-cc17-4d16-8263-e8bafd145a75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "1f18b21e-70df-443a-9557-4264948c13f3" + "552a58e5-e9a6-44a2-8334-38aeb8c1c05e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "56" + "58" ], "x-ms-correlation-request-id": [ - "457853eb-ffa5-4790-803b-cee5e09c94b2" + "507a8030-038e-43b1-bf19-707dd9e5aa5e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230018Z:457853eb-ffa5-4790-803b-cee5e09c94b2" + "NORTHEUROPE:20210409T074911Z:507a8030-038e-43b1-bf19-707dd9e5aa5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:17 GMT" + "Fri, 09 Apr 2021 07:49:11 GMT" ], "Content-Length": [ - "612" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52486-Global5422\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"52486-Global5437\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58274,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58274-Global2152\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"58274-Global256\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg8560?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzg1NjA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6015?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzYwMTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "181b2c1d-ddfa-41cb-9334-c6d8b12acb5e" + "1a4e1e8b-06a9-4ddf-9bf2-6cab03ffc478" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "14999" ], "x-ms-request-id": [ - "5a18e4bb-0416-4fa2-81ce-172f63c2683e" + "ff6dcf57-5799-464d-9661-36a16e218dcc" ], "x-ms-correlation-request-id": [ - "5a18e4bb-0416-4fa2-81ce-172f63c2683e" + "ff6dcf57-5799-464d-9661-36a16e218dcc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230021Z:5a18e4bb-0416-4fa2-81ce-172f63c2683e" + "NORTHEUROPE:20210409T074914Z:ff6dcf57-5799-464d-9661-36a16e218dcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,7 +180,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:21 GMT" + "Fri, 09 Apr 2021 07:49:13 GMT" ], "Content-Length": [ "102" @@ -196,22 +196,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg8560?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzg1NjA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6015?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzYwMTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "656338a5-402a-4d28-9268-5ce561f42f38" + "75a16681-d6ac-4a71-9644-57b554feea13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -225,13 +225,13 @@ "14998" ], "x-ms-request-id": [ - "875c4f19-e47a-400a-9b34-4eed483e9cb5" + "10716670-bb9c-4e4d-98c3-d750d25986ad" ], "x-ms-correlation-request-id": [ - "875c4f19-e47a-400a-9b34-4eed483e9cb5" + "10716670-bb9c-4e4d-98c3-d750d25986ad" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230032Z:875c4f19-e47a-400a-9b34-4eed483e9cb5" + "NORTHEUROPE:20210409T074927Z:10716670-bb9c-4e4d-98c3-d750d25986ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:31 GMT" + "Fri, 09 Apr 2021 07:49:26 GMT" ], "Content-Length": [ "0" @@ -253,22 +253,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg8560?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzg1NjA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6015?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzYwMTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cd610a09-31e8-4023-927e-235c49a8f500" + "1a4e1e8b-06a9-4ddf-9bf2-6cab03ffc478" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -288,13 +288,13 @@ "1199" ], "x-ms-request-id": [ - "ffea2fd7-11b6-4003-8881-eda62efeaec1" + "fff31346-7828-4466-b918-093646174201" ], "x-ms-correlation-request-id": [ - "ffea2fd7-11b6-4003-8881-eda62efeaec1" + "fff31346-7828-4466-b918-093646174201" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230022Z:ffea2fd7-11b6-4003-8881-eda62efeaec1" + "NORTHEUROPE:20210409T074916Z:fff31346-7828-4466-b918-093646174201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:22 GMT" + "Fri, 09 Apr 2021 07:49:16 GMT" ], "Content-Length": [ "220" @@ -315,26 +315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8560\",\r\n \"name\": \"MockRg8560\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6015\",\r\n \"name\": \"MockRg6015\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MjQ4Ni1HbG9iYWw1NDM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODI3NC1HbG9iYWwyNTY/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28dfa694-f504-460f-897b-9516029b7a84" + "0bbcdb9c-08b2-4d13-aef4-b7b55f2289f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -345,16 +345,16 @@ "no-cache" ], "x-ms-request-id": [ - "7431ed05-6279-4422-bce1-4bbc2c3de658" + "0b9164d6-af44-4859-a2e0-fb2a19314df3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "da9ff494-f203-4508-97cf-456987de3f08" + "d4818ff3-4f33-4099-812c-de2b56db7519" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230023Z:da9ff494-f203-4508-97cf-456987de3f08" + "NORTHEUROPE:20210409T074917Z:d4818ff3-4f33-4099-812c-de2b56db7519" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:22 GMT" + "Fri, 09 Apr 2021 07:49:16 GMT" ], "Content-Length": [ - "612" + "610" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,26 +375,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 52486,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS52486-Global5422.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS52486-Global5422\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"52486-Global5437\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 58274,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS58274-Global2152.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS58274-Global2152\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"58274-Global256\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eddbf4e3-bfbe-4a7e-9edc-d6e7203956ba" + "78f64ecc-b518-4193-bc95-95db99bbe7e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -405,16 +405,16 @@ "no-cache" ], "x-ms-request-id": [ - "2cb2ec11-c730-4881-9d10-06a6e1bf050b" + "0f8b054d-8200-403c-b4b6-d2490f0d3483" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "59" ], "x-ms-correlation-request-id": [ - "54f7c0d1-6539-43b8-a1ac-b8f590121a54" + "95fe1a01-d9b7-4776-9771-0c09461cdd74" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230023Z:54f7c0d1-6539-43b8-a1ac-b8f590121a54" + "NORTHEUROPE:20210409T074917Z:95fe1a01-d9b7-4776-9771-0c09461cdd74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,10 +423,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:23 GMT" + "Fri, 09 Apr 2021 07:49:17 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,26 +435,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d19812e2-c0a4-4c06-b888-38351117505a" + "eb0689ac-ba90-4aae-b782-42f4b2322d3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -465,16 +465,16 @@ "no-cache" ], "x-ms-request-id": [ - "eeb03021-eb18-48b0-93a4-2ce631b9b73c" + "43bcdefe-ca34-445d-af66-5b648b989b08" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "56" + "58" ], "x-ms-correlation-request-id": [ - "27262578-fcac-47da-8044-e549f4cdcb01" + "bb874d0d-2527-46a8-9c38-7d5c6aab62cf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230024Z:27262578-fcac-47da-8044-e549f4cdcb01" + "NORTHEUROPE:20210409T074918Z:bb874d0d-2527-46a8-9c38-7d5c6aab62cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,10 +483,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:23 GMT" + "Fri, 09 Apr 2021 07:49:17 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,32 +495,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8560/providers/Microsoft.Peering/peerings/ps4140?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzg1NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzNDE0MD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6015/providers/Microsoft.Peering/peerings/ps3307?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzYwMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMzMwNz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.164\",\r\n \"maxPrefixesAdvertisedV4\": 18595,\r\n \"md5AuthenticationKey\": \"44f79ae24dcf7e3d7b39514505b9a913\"\r\n },\r\n \"connectionIdentifier\": \"b9fd1471-725b-465e-ba49-6f6edf230d36\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 18595,\r\n \"md5AuthenticationKey\": \"44f79ae24dcf7e3d7b39514505b9a913\"\r\n },\r\n \"connectionIdentifier\": \"f5e79929-50d8-48ee-ac1d-ddb5128d00a6\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13464\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.134\",\r\n \"maxPrefixesAdvertisedV4\": 2270,\r\n \"md5AuthenticationKey\": \"953eff131ba34a75800e5d7235f8bb11\"\r\n },\r\n \"connectionIdentifier\": \"6dd7b590-fb5c-4d9c-b7f7-7659086679d5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.147\",\r\n \"maxPrefixesAdvertisedV4\": 2270,\r\n \"md5AuthenticationKey\": \"953eff131ba34a75800e5d7235f8bb11\"\r\n },\r\n \"connectionIdentifier\": \"040d752c-648e-40fd-b6ed-32cd9f2db5b7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28436\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f636d14c-3444-4b85-99c6-f7c4a111face" + "eb0689ac-ba90-4aae-b782-42f4b2322d3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1154" + "1151" ] }, "ResponseHeaders": { @@ -531,16 +531,16 @@ "no-cache" ], "x-ms-request-id": [ - "1e1e1ca7-0be8-4d9e-85ea-6c55d27eae32" + "8061b5ea-07c6-4b93-b9da-dc842de4d001" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "f21e05e3-303e-4cc1-a9f7-45f2c5e9ef30" + "63108d34-b3fc-4008-aa58-e9da7a315651" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230027Z:f21e05e3-303e-4cc1-a9f7-45f2c5e9ef30" + "NORTHEUROPE:20210409T074922Z:63108d34-b3fc-4008-aa58-e9da7a315651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,10 +549,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:27 GMT" + "Fri, 09 Apr 2021 07:49:22 GMT" ], "Content-Length": [ - "2072" + "2018" ], "Content-Type": [ "application/json; charset=utf-8" @@ -561,32 +561,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.164\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18595,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"44f79ae24dcf7e3d7b39514505b9a913\"\r\n },\r\n \"connectionIdentifier\": \"b9fd1471-725b-465e-ba49-6f6edf230d36\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18595,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"44f79ae24dcf7e3d7b39514505b9a913\"\r\n },\r\n \"connectionIdentifier\": \"f5e79929-50d8-48ee-ac1d-ddb5128d00a6\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13464\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"0f48e658-719b-4930-9a2d-44adf06ee231\",\r\n \"name\": \"ps4140\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8560/providers/Microsoft.Peering/peerings/ps4140\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.134\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2270,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"953eff131ba34a75800e5d7235f8bb11\"\r\n },\r\n \"connectionIdentifier\": \"6dd7b590-fb5c-4d9c-b7f7-7659086679d5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.147\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2270,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"953eff131ba34a75800e5d7235f8bb11\"\r\n },\r\n \"connectionIdentifier\": \"040d752c-648e-40fd-b6ed-32cd9f2db5b7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28436\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps3307\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6015/providers/Microsoft.Peering/peerings/ps3307\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8560/providers/Microsoft.Peering/peerings/ps4140?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzg1NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzNDE0MD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6015/providers/Microsoft.Peering/peerings/ps3307?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzYwMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMzMwNz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.164\",\r\n \"peerSessionIPv6Address\": \"1a0c:466f:5d75:e4d8:ad67:65d5:f519:dbc8\",\r\n \"maxPrefixesAdvertisedV4\": 18595,\r\n \"maxPrefixesAdvertisedV6\": 2000,\r\n \"md5AuthenticationKey\": \"44f79ae24dcf7e3d7b39514505b9a913\"\r\n },\r\n \"connectionIdentifier\": \"b9fd1471-725b-465e-ba49-6f6edf230d36\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"maxPrefixesAdvertisedV4\": 18595,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"44f79ae24dcf7e3d7b39514505b9a913\"\r\n },\r\n \"connectionIdentifier\": \"f5e79929-50d8-48ee-ac1d-ddb5128d00a6\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13464\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.134\",\r\n \"peerSessionIPv6Address\": \"1a0c:466f:5d75:e4d8:ad67:65d5:f519:dbc8\",\r\n \"maxPrefixesAdvertisedV4\": 2270,\r\n \"maxPrefixesAdvertisedV6\": 2000,\r\n \"md5AuthenticationKey\": \"953eff131ba34a75800e5d7235f8bb11\"\r\n },\r\n \"connectionIdentifier\": \"6dd7b590-fb5c-4d9c-b7f7-7659086679d5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.147\",\r\n \"maxPrefixesAdvertisedV4\": 2270,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"953eff131ba34a75800e5d7235f8bb11\"\r\n },\r\n \"connectionIdentifier\": \"040d752c-648e-40fd-b6ed-32cd9f2db5b7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28436\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ccc7a2e-00ea-44e1-bc77-7a81ccea5266" + "305758dc-5ce9-47ce-891a-95d0c3333917" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1617" + "1614" ] }, "ResponseHeaders": { @@ -597,16 +597,16 @@ "no-cache" ], "x-ms-request-id": [ - "7963ea5d-c790-4284-86e8-c9cbd2f63b0d" + "3b53b466-5b9d-414a-9dc8-b85a86ab02d6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "57" + "58" ], "x-ms-correlation-request-id": [ - "be8603c1-425a-4b88-8cd3-03926f3342d9" + "241f440f-97d4-4b63-94c9-a7a684913070" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230028Z:be8603c1-425a-4b88-8cd3-03926f3342d9" + "NORTHEUROPE:20210409T074923Z:241f440f-97d4-4b63-94c9-a7a684913070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,10 +615,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:27 GMT" + "Fri, 09 Apr 2021 07:49:22 GMT" ], "Content-Length": [ - "139" + "162" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,26 +627,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"BadArgument\",\r\n \"message\": \"IP address 1a0c:466f:5d75:e4d8:ad67:65d5:f519:dbc8 not contained within given facility 99999\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadArgument\",\r\n \"message\": \"IP address 1a0c:466f:5d75:e4d8:ad67:65d5:f519:dbc8 not contained within given facility 99999\"\r\n }\r\n}", "StatusCode": 400 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8560/providers/Microsoft.Peering/peerings/ps4140?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzg1NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzNDE0MD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6015/providers/Microsoft.Peering/peerings/ps3307?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzYwMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMzMwNz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91b74bda-cf4b-40e9-bfa4-42f7eeb29989" + "8ac67fb2-8add-47e0-8bef-fbd6be4c5bc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -657,16 +657,16 @@ "no-cache" ], "x-ms-request-id": [ - "a1a9e426-91bb-4b06-b82e-ae7ae0ecc38f" + "a475eabf-d7de-4e9e-95ab-848af2048e06" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "af5fbe6a-7d9b-444a-862a-8ec675f31efc" + "6063fd52-0a35-40b5-bc69-3a170f022be7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230028Z:af5fbe6a-7d9b-444a-862a-8ec675f31efc" + "NORTHEUROPE:20210409T074923Z:6063fd52-0a35-40b5-bc69-3a170f022be7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,10 +675,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:27 GMT" + "Fri, 09 Apr 2021 07:49:22 GMT" ], "Content-Length": [ - "2072" + "2018" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,26 +687,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.164\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18595,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"44f79ae24dcf7e3d7b39514505b9a913\"\r\n },\r\n \"connectionIdentifier\": \"b9fd1471-725b-465e-ba49-6f6edf230d36\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.175\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18595,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"44f79ae24dcf7e3d7b39514505b9a913\"\r\n },\r\n \"connectionIdentifier\": \"f5e79929-50d8-48ee-ac1d-ddb5128d00a6\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_13464\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"eTag\": \"0f48e658-719b-4930-9a2d-44adf06ee231\",\r\n \"name\": \"ps4140\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8560/providers/Microsoft.Peering/peerings/ps4140\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.134\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2270,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"953eff131ba34a75800e5d7235f8bb11\"\r\n },\r\n \"connectionIdentifier\": \"6dd7b590-fb5c-4d9c-b7f7-7659086679d5\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.147\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2270,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"953eff131ba34a75800e5d7235f8bb11\"\r\n },\r\n \"connectionIdentifier\": \"040d752c-648e-40fd-b6ed-32cd9f2db5b7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_28436\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps3307\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6015/providers/Microsoft.Peering/peerings/ps3307\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg8560/providers/Microsoft.Peering/peerings/ps4140?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzg1NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzNDE0MD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg6015/providers/Microsoft.Peering/peerings/ps3307?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzYwMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzMzMwNz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3e840c6-c4f6-471e-a2fb-ad9353a6e27c" + "b90ecd24-a838-46a2-9548-93b52d184bee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -717,16 +717,16 @@ "no-cache" ], "x-ms-request-id": [ - "695d3e97-5a75-4b52-b6a3-0c91ae60c6ef" + "f8295db9-4488-4f8e-b301-a84ec0c27d66" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "bafe6da7-c508-4174-a2a1-d5cb7de03d93" + "e803b7d1-6f4e-4c2b-9159-f5e6e82731d8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230031Z:bafe6da7-c508-4174-a2a1-d5cb7de03d93" + "NORTHEUROPE:20210409T074926Z:e803b7d1-6f4e-4c2b-9159-f5e6e82731d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,7 +735,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:31 GMT" + "Fri, 09 Apr 2021 07:49:26 GMT" ], "Expires": [ "-1" @@ -748,22 +748,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/52486-Global5437?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81MjQ4Ni1HbG9iYWw1NDM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/58274-Global256?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy81ODI3NC1HbG9iYWwyNTY/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "748baddb-540e-43a7-a879-7ff7bc4f01c4" + "249b7da0-8481-456e-9e80-3218889729a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -774,16 +774,16 @@ "no-cache" ], "x-ms-request-id": [ - "e5df3dd7-92f0-4034-94d5-6cbc68d8c419" + "7eacba94-8995-4615-8e37-4cabd965d687" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "902bcb0e-d71c-484f-a737-35fbed944e0f" + "a39c3b76-ceef-42f0-be1d-edf2f3ef17cd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230032Z:902bcb0e-d71c-484f-a737-35fbed944e0f" + "NORTHEUROPE:20210409T074927Z:a39c3b76-ceef-42f0-be1d-edf2f3ef17cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +792,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:32 GMT" + "Fri, 09 Apr 2021 07:49:26 GMT" ], "Expires": [ "-1" @@ -805,22 +805,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg8560?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzg1NjA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg6015?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzYwMTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fda73427-6801-47a7-b4b5-d81525b462a1" + "75a16681-d6ac-4a71-9644-57b554feea13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -831,22 +831,22 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc4NTYwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2MDE1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-request-id": [ - "dd4d544e-102a-4a33-aae5-9f8aa054643d" + "e8bbbdbc-1ee5-42a3-beb2-ade53f7cd387" ], "x-ms-correlation-request-id": [ - "dd4d544e-102a-4a33-aae5-9f8aa054643d" + "e8bbbdbc-1ee5-42a3-beb2-ade53f7cd387" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230033Z:dd4d544e-102a-4a33-aae5-9f8aa054643d" + "NORTHEUROPE:20210409T074928Z:e8bbbdbc-1ee5-42a3-beb2-ade53f7cd387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -855,7 +855,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:32 GMT" + "Fri, 09 Apr 2021 07:49:27 GMT" ], "Expires": [ "-1" @@ -868,16 +868,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc4NTYwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzROVFl3TFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2MDE1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzJNREUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "75a16681-d6ac-4a71-9644-57b554feea13" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -888,7 +891,7 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc4NTYwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2MDE1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" @@ -897,13 +900,13 @@ "14997" ], "x-ms-request-id": [ - "35bd323d-1e4d-4a4a-ad86-b173e1876c93" + "0afa2c44-962b-41c5-87f7-9f66e7b400eb" ], "x-ms-correlation-request-id": [ - "35bd323d-1e4d-4a4a-ad86-b173e1876c93" + "0afa2c44-962b-41c5-87f7-9f66e7b400eb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230049Z:35bd323d-1e4d-4a4a-ad86-b173e1876c93" + "NORTHEUROPE:20210409T074943Z:0afa2c44-962b-41c5-87f7-9f66e7b400eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +915,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:00:49 GMT" + "Fri, 09 Apr 2021 07:49:43 GMT" ], "Expires": [ "-1" @@ -925,16 +928,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc4NTYwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzROVFl3TFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2MDE1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzJNREUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "75a16681-d6ac-4a71-9644-57b554feea13" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -945,7 +951,7 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc4NTYwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2MDE1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" @@ -954,13 +960,13 @@ "14996" ], "x-ms-request-id": [ - "83d923a5-1820-4f71-9ec1-5928e40d7d04" + "ecab83d7-a1cc-4ac9-8390-5551978d7cf0" ], "x-ms-correlation-request-id": [ - "83d923a5-1820-4f71-9ec1-5928e40d7d04" + "ecab83d7-a1cc-4ac9-8390-5551978d7cf0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230104Z:83d923a5-1820-4f71-9ec1-5928e40d7d04" + "NORTHEUROPE:20210409T074959Z:ecab83d7-a1cc-4ac9-8390-5551978d7cf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,7 +975,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:01:04 GMT" + "Fri, 09 Apr 2021 07:49:58 GMT" ], "Expires": [ "-1" @@ -982,16 +988,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc4NTYwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzROVFl3TFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2MDE1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzJNREUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "75a16681-d6ac-4a71-9644-57b554feea13" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -1005,13 +1014,13 @@ "14995" ], "x-ms-request-id": [ - "f86b531b-3240-4623-95f2-16ae204cc3d4" + "41d3ce16-fd70-4495-9973-166028747063" ], "x-ms-correlation-request-id": [ - "f86b531b-3240-4623-95f2-16ae204cc3d4" + "41d3ce16-fd70-4495-9973-166028747063" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230119Z:f86b531b-3240-4623-95f2-16ae204cc3d4" + "NORTHEUROPE:20210409T075014Z:41d3ce16-fd70-4495-9973-166028747063" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1020,7 +1029,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:01:19 GMT" + "Fri, 09 Apr 2021 07:50:14 GMT" ], "Expires": [ "-1" @@ -1033,16 +1042,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc4NTYwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzROVFl3TFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc2MDE1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzJNREUxTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "75a16681-d6ac-4a71-9644-57b554feea13" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -1056,13 +1068,13 @@ "14994" ], "x-ms-request-id": [ - "21f28fec-7899-4542-9879-32e66a6e7e27" + "5e5aee7d-2f20-42b7-9170-d2f9360f8a7a" ], "x-ms-correlation-request-id": [ - "21f28fec-7899-4542-9879-32e66a6e7e27" + "5e5aee7d-2f20-42b7-9170-d2f9360f8a7a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T230120Z:21f28fec-7899-4542-9879-32e66a6e7e27" + "NORTHEUROPE:20210409T075014Z:5e5aee7d-2f20-42b7-9170-d2f9360f8a7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,7 +1083,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 23:01:19 GMT" + "Fri, 09 Apr 2021 07:50:14 GMT" ], "Expires": [ "-1" @@ -1086,16 +1098,16 @@ ], "Names": { "Test-SetNewIPv6": [ - "52486-Global5437", - "AS52486-Global5422", - "MockRg8560", - "ps4140" + "58274-Global256", + "AS58274-Global2152", + "MockRg6015", + "ps3307" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "44f79ae24dcf7e3d7b39514505b9a913", - "MaxPrefixV4": "18595", + "Hash": "953eff131ba34a75800e5d7235f8bb11", + "MaxPrefixV4": "2270", "IpAddress": "1a0c:466f:5d75:e4d8:ad67:65d5:f519:dbc8" } } \ No newline at end of file diff --git a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewMd5Hash.json b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewMd5Hash.json index 68dd3b9a7694..adea3a4a3d8a 100644 --- a/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewMd5Hash.json +++ b/src/Peering/Peering.Test/SessionRecords/Microsoft.Azure.Commands.Peering.Test.ScenarioTests.SetPeeringTests/TestSetNewMd5Hash.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjI5LUdsb2JhbDMwNDg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNDg2OC1HbG9iYWw4MTU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2229,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2229-Global9396\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 34868,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS34868-Global214\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f686ec4a-7025-4ba8-a422-581d39c6c9a6" + "77b9936e-083c-40b3-a354-7a8df5750a70" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "382" + "383" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-request-id": [ - "5aaebab4-d239-4d8c-87c5-dfc5f23987b2" + "35a3dce3-216a-486f-ade5-594ce6f0ca95" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "57" ], "x-ms-correlation-request-id": [ - "a5be3711-eba5-4b81-a513-ef7e41eaa412" + "fd611f75-155e-4cdd-a3ca-fd1262d63024" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225847Z:a5be3711-eba5-4b81-a513-ef7e41eaa412" + "NORTHEUROPE:20210409T074602Z:fd611f75-155e-4cdd-a3ca-fd1262d63024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:47 GMT" + "Fri, 09 Apr 2021 07:46:01 GMT" ], "Content-Length": [ - "605" + "607" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,32 +63,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2229,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2229-Global9396\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"2229-Global3048\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 34868,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS34868-Global214\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"34868-Global815\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjI5LUdsb2JhbDMwNDg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNDg2OC1HbG9iYWw4MTU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2229,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2229-Global9396\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 34868,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS34868-Global214\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1e7b23d3-9030-47a1-80e9-491494de720e" + "7fde4bdb-d1cb-4c6a-8741-707b97ff9912" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "418" + "419" ] }, "ResponseHeaders": { @@ -99,16 +99,16 @@ "no-cache" ], "x-ms-request-id": [ - "e2f76ef5-096f-44db-8a7d-3e9a1baa8467" + "b43e15ec-d743-4ff9-81fa-aa8fc95f9361" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "56" ], "x-ms-correlation-request-id": [ - "25b093d5-35b3-4b05-8781-07796526f72a" + "952c3781-2fad-415a-90f3-121b30573203" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225849Z:25b093d5-35b3-4b05-8781-07796526f72a" + "NORTHEUROPE:20210409T074603Z:952c3781-2fad-415a-90f3-121b30573203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,10 +117,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:48 GMT" + "Fri, 09 Apr 2021 07:46:02 GMT" ], "Content-Length": [ - "606" + "607" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,26 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2229,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2229-Global9396\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"2229-Global3048\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 34868,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS34868-Global214\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"34868-Global815\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4807?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQ4MDc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4372?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQzNzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "825d8621-c2c4-4d0b-94c9-a8a57bce7348" + "72479fa7-a211-407c-9c1e-26856779e3d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "14999" ], "x-ms-request-id": [ - "8be073a2-9946-447e-a2d8-95de312d69ae" + "8f656315-13aa-44a2-85c5-f870d765bc8b" ], "x-ms-correlation-request-id": [ - "8be073a2-9946-447e-a2d8-95de312d69ae" + "8f656315-13aa-44a2-85c5-f870d765bc8b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225852Z:8be073a2-9946-447e-a2d8-95de312d69ae" + "NORTHEUROPE:20210409T074607Z:8f656315-13aa-44a2-85c5-f870d765bc8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,7 +180,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:52 GMT" + "Fri, 09 Apr 2021 07:46:07 GMT" ], "Content-Length": [ "102" @@ -196,22 +196,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4807?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQ4MDc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4372?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQzNzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1aefef8-3097-45da-9496-19cd9d7bd94b" + "3a7ce9f3-9cb7-46cf-8e4f-563dd3c7fde1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -225,13 +225,13 @@ "14998" ], "x-ms-request-id": [ - "02b3975f-ae28-47a7-968a-ed057556e349" + "385662f9-4fac-4667-b365-67749639b9d7" ], "x-ms-correlation-request-id": [ - "02b3975f-ae28-47a7-968a-ed057556e349" + "385662f9-4fac-4667-b365-67749639b9d7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225904Z:02b3975f-ae28-47a7-968a-ed057556e349" + "NORTHEUROPE:20210409T074619Z:385662f9-4fac-4667-b365-67749639b9d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:59:03 GMT" + "Fri, 09 Apr 2021 07:46:18 GMT" ], "Content-Length": [ "0" @@ -253,22 +253,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4807?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQ4MDc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4372?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQzNzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bf0aebbc-c0d2-448d-8784-9af6d29024ee" + "72479fa7-a211-407c-9c1e-26856779e3d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -288,13 +288,13 @@ "1199" ], "x-ms-request-id": [ - "3fbd8e00-d6df-40cf-a6e9-887e43bdc16d" + "4ffe7e4d-242f-4998-804e-2ad2f269d2b1" ], "x-ms-correlation-request-id": [ - "3fbd8e00-d6df-40cf-a6e9-887e43bdc16d" + "4ffe7e4d-242f-4998-804e-2ad2f269d2b1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225853Z:3fbd8e00-d6df-40cf-a6e9-887e43bdc16d" + "NORTHEUROPE:20210409T074610Z:4ffe7e4d-242f-4998-804e-2ad2f269d2b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:53 GMT" + "Fri, 09 Apr 2021 07:46:09 GMT" ], "Content-Length": [ "220" @@ -315,26 +315,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4807\",\r\n \"name\": \"MockRg4807\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4372\",\r\n \"name\": \"MockRg4372\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjI5LUdsb2JhbDMwNDg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNDg2OC1HbG9iYWw4MTU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ddfc5f-c700-4471-95b7-43a3f043215c" + "d6bc5319-7684-4cbc-ae8e-4b1f578a1581" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -345,16 +345,16 @@ "no-cache" ], "x-ms-request-id": [ - "b70af52e-d460-436e-b3ea-fce9e58ace51" + "b955783f-492b-4663-a0d5-89d2cf0c8df5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "c5208a53-dcf6-425b-8be0-b1e233f81d6d" + "663e86d8-24da-4c57-89c7-17c6706f1517" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225854Z:c5208a53-dcf6-425b-8be0-b1e233f81d6d" + "NORTHEUROPE:20210409T074610Z:663e86d8-24da-4c57-89c7-17c6706f1517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,10 +363,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:53 GMT" + "Fri, 09 Apr 2021 07:46:10 GMT" ], "Content-Length": [ - "606" + "607" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,26 +375,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2229,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS2229-Global9396.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS2229-Global9396\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"2229-Global3048\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 34868,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"Noc@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n },\r\n {\r\n \"role\": \"Policy\",\r\n \"email\": \"Policy@AS34868-Global214.com\",\r\n \"phone\": \"+1(888)-889-8088\"\r\n }\r\n ],\r\n \"peerName\": \"AS34868-Global214\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"34868-Global815\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a356a33-af83-4e38-8235-60482ff89bf0" + "c86f6ccd-69cf-480b-bf3f-0c13960dc853" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -405,16 +405,16 @@ "no-cache" ], "x-ms-request-id": [ - "d871733a-2ddf-4bcb-b829-8b8135381cec" + "2ec055ff-be59-41e0-a901-2838b2bee61b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "59" + "58" ], "x-ms-correlation-request-id": [ - "d60bdf6f-dc0b-415f-8314-3c6e741509ba" + "97c545f4-06f8-4bb6-94c4-fb717cfbc77b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225854Z:d60bdf6f-dc0b-415f-8314-3c6e741509ba" + "NORTHEUROPE:20210409T074611Z:97c545f4-06f8-4bb6-94c4-fb717cfbc77b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,10 +423,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:53 GMT" + "Fri, 09 Apr 2021 07:46:10 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,26 +435,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Exchange&api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5342279e-d5d1-4b2a-9aa6-19f29cfa602f" + "7ac9706a-c049-4445-a3e2-6dfbd9cdfb57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -465,16 +465,16 @@ "no-cache" ], "x-ms-request-id": [ - "1eb2d214-4f8d-4424-9c2d-3f1889c0136e" + "d74dd9cf-aee6-4e11-b7e8-f3ce75044a9f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "57" ], "x-ms-correlation-request-id": [ - "764c4e52-5ddf-48c1-932d-18bb84e93ea6" + "2898f7e2-27fe-46ac-ab5b-3792714d700f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225855Z:764c4e52-5ddf-48c1-932d-18bb84e93ea6" + "NORTHEUROPE:20210409T074612Z:2898f7e2-27fe-46ac-ab5b-3792714d700f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,10 +483,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:54 GMT" + "Fri, 09 Apr 2021 07:46:11 GMT" ], "Content-Length": [ - "114515" + "122024" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,32 +495,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Atlanta\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.182.102,198.32.182.33\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:2,2001:504:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.182.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:10::/64\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/9\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n },\r\n {\r\n \"exchangeName\": \"WIX-NZ\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.7.0.220\",\r\n \"microsoftIPv6Address\": \"2001:7fa:3:ca07::dc\",\r\n \"facilityIPv4Prefix\": \"202.7.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:3:ca07::/64\",\r\n \"peeringDBFacilityId\": 348,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/348\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Bogota\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"208.115.128.25,208.115.128.24\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:2,2001:504:0:10::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:10::/64\",\r\n \"peeringDBFacilityId\": 2289,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2289\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"RoNIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"217.156.113.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:49::88\",\r\n \"facilityIPv4Prefix\": \"217.156.113.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:49::/64\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/301\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 Denver \",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.58.94,185.1.58.123,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:1,2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"185.1.58.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"JBIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2 California\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.68.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.68.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.179.18.16\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.100,80.81.202.133,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:1,2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC / INXS by ecix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Palo Alto\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"198.32.176.152\",\r\n \"microsoftIPv6Address\": \"2001:504:d::98\",\r\n \"facilityIPv4Prefix\": \"198.32.176.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:d::/64\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/7\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"195.42.145.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Phoenix\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.98.35,198.32.98.36\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"198.32.98.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 760,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/760\"\r\n },\r\n {\r\n \"exchangeName\": \"Phoenix IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.105.44\",\r\n \"microsoftIPv6Address\": \"2001:504:3b::44\",\r\n \"facilityIPv4Prefix\": \"206.41.105.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3b::/64\",\r\n \"peeringDBFacilityId\": 662,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/662\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Sao Paulo\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.122.60,64.191.232.60,198.32.122.57,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:504:0:7::3c,2001:478:122::39,2001:504:0:7::39\",\r\n \"facilityIPv4Prefix\": \"198.32.122.0/24,64.191.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:478:122::/64,2001:504:0:7::/64\",\r\n \"peeringDBFacilityId\": 119,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/119\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Seattle\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.134.152\",\r\n \"microsoftIPv6Address\": \"2001:504:12::15\",\r\n \"facilityIPv4Prefix\": \"198.32.134.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:12::/64\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/11\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"PacificWave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"B-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.30.58\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"185.1.30.0/24\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 326,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/326\"\r\n },\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.121.80.59\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.104.41\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NL-ix\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"193.239.117.16,193.239.118.173\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1,2001:7f8:13::a500:8075:5\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"80.249.209.21,80.249.209.20\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1::a500:8075:2,2001:7f8:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"80.249.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1::/64\",\r\n \"peeringDBFacilityId\": 26,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/26\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.112.37\",\r\n \"microsoftIPv6Address\": \"2001:7f8:83::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.112.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:83::/64\",\r\n \"peeringDBFacilityId\": 2031,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2031\"\r\n },\r\n {\r\n \"exchangeName\": \"Asteroid Amsterdam\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.94.41\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b6::1f84:1\",\r\n \"facilityIPv4Prefix\": \"185.1.94.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b6::/64\",\r\n \"peeringDBFacilityId\": 1812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1812\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-ix 2\",\r\n \"bandwidthInMbps\": 400000,\r\n \"microsoftIPv4Address\": \"185.1.122.15\",\r\n \"microsoftIPv6Address\": \"2001:7f8:cd::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.122.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:cd::/48\",\r\n \"peeringDBFacilityId\": 2569,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2569\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Ashburn\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"206.126.236.17,206.126.236.148\",\r\n \"microsoftIPv6Address\": \"2001:504:0:2::8075:1,2001:504:0:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.126.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:2::/64\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Ashburn\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.170.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:3::c\",\r\n \"facilityIPv4Prefix\": \"206.53.170.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:3::/64\",\r\n \"peeringDBFacilityId\": 1178,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1178\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty Ashburn\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.83.10.14\",\r\n \"microsoftIPv6Address\": \"2001:504:17:10::14\",\r\n \"facilityIPv4Prefix\": \"206.83.10.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:10::/64\",\r\n \"peeringDBFacilityId\": 2572,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2572\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GR-IX::Athens\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"176.126.38.18,176.126.38.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6e::18,2001:7f8:6e::28\",\r\n \"facilityIPv4Prefix\": \"176.126.38.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6e::/64\",\r\n \"peeringDBFacilityId\": 347,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/347\"\r\n },\r\n {\r\n \"exchangeName\": \"SEECIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.172.9,185.1.172.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f5::1f8b:0:2,2001:7f8:f5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f5::/64\",\r\n \"peeringDBFacilityId\": 3184,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3184\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Digital Realty Atlanta\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.132.117,198.32.132.18\",\r\n \"microsoftIPv6Address\": \"2001:478:132::117,2001:478:132::18\",\r\n \"facilityIPv4Prefix\": \"198.32.132.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:132::/64\",\r\n \"peeringDBFacilityId\": 22,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/22\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"APE\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.203.154.162,192.203.154.163\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2,2001:7fa:4:c0cb::9aa3\",\r\n \"facilityIPv4Prefix\": \"192.203.154.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:4:c0cb::/64\",\r\n \"peeringDBFacilityId\": 97,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/97\"\r\n },\r\n {\r\n \"exchangeName\": \"AKL-IX (Auckland NZ)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"43.243.21.23,43.243.21.99\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1,2001:7fa:11:6:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"43.243.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:6::/64\",\r\n \"peeringDBFacilityId\": 977,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/977\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Auckland\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.22.38\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:40::26\",\r\n \"facilityIPv4Prefix\": \"43.243.22.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:40::/64\",\r\n \"peeringDBFacilityId\": 984,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/984\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Thailand IX (TH-IX)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"61.19.60.74,61.19.60.75\",\r\n \"microsoftIPv6Address\": \"2001:c38:8000::8075:1,2001:c38:8000::8075:2\",\r\n \"facilityIPv4Prefix\": \"61.19.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:c38:8000::/64\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/225\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bangkok\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bangkok\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CATNIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"193.242.98.152,193.242.98.149\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2a:0:2:1:0:8075,2001:7f8:2a:0:2:2:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.242.98.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2a::/64\",\r\n \"peeringDBFacilityId\": 62,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/62\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Barcelona\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.143.24\",\r\n \"microsoftIPv6Address\": \"2001:7f8:de::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:de::/64\",\r\n \"peeringDBFacilityId\": 2633,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2633\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BCIX\",\r\n \"bandwidthInMbps\": 50000,\r\n \"microsoftIPv4Address\": \"193.178.185.84,193.178.185.104\",\r\n \"microsoftIPv6Address\": \"2001:7f8:19:1::1f8b:1,2001:7f8:19:1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"193.178.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:19:1::/64\",\r\n \"peeringDBFacilityId\": 87,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/87\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-BER\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"194.9.117.84\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:5:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"194.9.117.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:5::/64\",\r\n \"peeringDBFacilityId\": 209,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/209\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Boston Internet Exchange\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.236.110,206.108.236.10\",\r\n \"microsoftIPv6Address\": \"2001:504:24:1::1f8b:2,2001:504:24:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"206.108.236.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:24:1::/64\",\r\n \"peeringDBFacilityId\": 565,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/565\"\r\n },\r\n {\r\n \"exchangeName\": \"MASS-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.53.143.7\",\r\n \"microsoftIPv6Address\": \"2001:504:47::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.143.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:47::/64\",\r\n \"peeringDBFacilityId\": 1086,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1086\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Brisbane\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.0.73\",\r\n \"microsoftIPv6Address\": \"2001:7fa:9::a\",\r\n \"facilityIPv4Prefix\": \"218.100.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:9::/64\",\r\n \"peeringDBFacilityId\": 110,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/110\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Brisbane\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.70.20\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:20::14\",\r\n \"facilityIPv4Prefix\": \"103.26.70.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:20::/64\",\r\n \"peeringDBFacilityId\": 781,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/781\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Brisbane QLD)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.76.49\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:2:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.76.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:2::/64\",\r\n \"peeringDBFacilityId\": 576,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/576\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BNIX\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"194.53.172.34,194.53.172.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1,2001:7f8:26::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"194.53.172.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:26::/64\",\r\n \"peeringDBFacilityId\": 59,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/59\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Balcan-IX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"80.97.248.76,80.97.248.52\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::32,2a02:d10:80::13\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64\",\r\n \"peeringDBFacilityId\": 372,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/372\"\r\n },\r\n {\r\n \"exchangeName\": \"InterLAN\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"86.104.125.130,86.104.125.180\",\r\n \"microsoftIPv6Address\": \"2001:7f8:64:225::8075:1,2001:7f8:64:225::8075:2\",\r\n \"facilityIPv4Prefix\": \"86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:64:225::/64\",\r\n \"peeringDBFacilityId\": 270,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/270\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BiX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.188.137.21,193.188.137.51\",\r\n \"microsoftIPv6Address\": \"2001:7f8:35::8075:1,2001:7f8:35::8075:2\",\r\n \"facilityIPv4Prefix\": \"193.188.137.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:35::/64\",\r\n \"peeringDBFacilityId\": 55,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/55\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CABASE-BUE - IX Argentina (Buenos Aires)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.0.17.217,200.0.17.218\",\r\n \"microsoftIPv6Address\": \"2001:13c7:6001::217,2001:13c7:6001::218\",\r\n \"facilityIPv4Prefix\": \"200.0.17.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:13c7:6001::/64\",\r\n \"peeringDBFacilityId\": 181,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/181\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Cape Town\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.70.47,196.60.70.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.60.70.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d1::/64\",\r\n \"peeringDBFacilityId\": 597,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/597\"\r\n },\r\n {\r\n \"exchangeName\": \"CINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.22.156,196.223.22.173\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f1::156,2001:43f8:1f1::173\",\r\n \"facilityIPv4Prefix\": \"196.223.22.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f1::/64\",\r\n \"peeringDBFacilityId\": 344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/344\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"45.120.251.137\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:3::137\",\r\n \"facilityIPv4Prefix\": \"45.120.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:3::/64\",\r\n \"peeringDBFacilityId\": 1786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1786\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Chennai\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.228.174.5,103.228.174.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:68::5,2400:d180:68::6\",\r\n \"facilityIPv4Prefix\": \"103.228.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:68::/64\",\r\n \"peeringDBFacilityId\": 2588,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2588\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Chicago\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"208.115.137.61,208.115.136.27\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:2,2001:504:0:4::8075:1\",\r\n \"facilityIPv4Prefix\": \"208.115.136.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:4::/64\",\r\n \"peeringDBFacilityId\": 2,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Chicago\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.108.115.47\",\r\n \"microsoftIPv6Address\": \"2001:504:38:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.108.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:38:1::/64\",\r\n \"peeringDBFacilityId\": 944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/944\"\r\n },\r\n {\r\n \"exchangeName\": \"ChIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.41.110.57,206.41.110.58\",\r\n \"microsoftIPv6Address\": \"2001:504:41:110::57,2001:504:41:110::58\",\r\n \"facilityIPv4Prefix\": \"206.41.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:41:110::/64\",\r\n \"peeringDBFacilityId\": 239,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/239\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.38.7.76,192.38.7.86\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1f::8075:76:0,2001:7f8:1f::8075:86:0\",\r\n \"facilityIPv4Prefix\": \"192.38.7.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1f::/64\",\r\n \"peeringDBFacilityId\": 78,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/78\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen GREEN -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:203::/64\",\r\n \"peeringDBFacilityId\": 193,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/193\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.172\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:4\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Copenhagen BLUE -- MTU9K\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"212.237.192.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64\",\r\n \"peeringDBFacilityId\": 2868,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2868\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Dallas\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.118.17,206.223.118.65\",\r\n \"microsoftIPv6Address\": \"2001:504:0:5::8075:1,2001:504:0:5::8075:2\",\r\n \"facilityIPv4Prefix\": \"206.223.118.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:5::/64\",\r\n \"peeringDBFacilityId\": 3,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/3\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Dallas\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.53.174.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:7::c\",\r\n \"facilityIPv4Prefix\": \"206.53.174.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:7::/64\",\r\n \"peeringDBFacilityId\": 1180,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1180\"\r\n },\r\n {\r\n \"exchangeName\": \"CyrusOne IX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"198.32.130.39,198.32.130.40\",\r\n \"microsoftIPv6Address\": \"2001:478:130::39,2001:478:130::40\",\r\n \"facilityIPv4Prefix\": \"198.32.130.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:478:130::/64\",\r\n \"peeringDBFacilityId\": 672,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/672\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Dallas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.202.15\",\r\n \"microsoftIPv6Address\": \"2001:504:61::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.53.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:61::/64\",\r\n \"peeringDBFacilityId\": 1249,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1249\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Delhi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.168.5,103.27.168.6\",\r\n \"microsoftIPv6Address\": \"2400:d180:67::5,2400:d180:67::6\",\r\n \"facilityIPv4Prefix\": \"103.27.168.0/24\",\r\n \"facilityIPv6Prefix\": \"2400:d180:67::/64\",\r\n \"peeringDBFacilityId\": 2587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CoreSite - Any2Denver\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.51.46.72,206.51.46.100\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24\",\r\n \"facilityIPv6Prefix\": \"2605:6c00:303:303::/64\",\r\n \"peeringDBFacilityId\": 254,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/254\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DET-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"209.124.52.65,209.124.52.66\",\r\n \"microsoftIPv6Address\": \"2607:f790:100::65,2607:f790:100::66\",\r\n \"facilityIPv4Prefix\": \"209.124.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2607:f790:100::/64\",\r\n \"peeringDBFacilityId\": 1006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1006\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Detroit\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Detroit\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"UAE-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.8.32,185.1.8.22\",\r\n \"microsoftIPv6Address\": \"2001:7f8:73::1f8b:0:1,2001:7f8:73::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.8.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:73::/64\",\r\n \"peeringDBFacilityId\": 587,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/587\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dubai\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dubai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"INEX LAN1\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.6.36.28\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18::28\",\r\n \"facilityIPv4Prefix\": \"185.6.36.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18::/64\",\r\n \"peeringDBFacilityId\": 48,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/48\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Dublin\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.109.26\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c3::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.109.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c3::/64\",\r\n \"peeringDBFacilityId\": 1926,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1926\"\r\n },\r\n {\r\n \"exchangeName\": \"INEX LAN2\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.88.240.77\",\r\n \"microsoftIPv6Address\": \"2001:7f8:18:12::77\",\r\n \"facilityIPv4Prefix\": \"194.88.240.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:18:12::/64\",\r\n \"peeringDBFacilityId\": 387,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/387\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Dusseldorf\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.170.161,185.1.170.170\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:3,2001:7f8:9e::1f8b:0:4\",\r\n \"facilityIPv4Prefix\": \"185.1.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9e::/64\",\r\n \"peeringDBFacilityId\": 1214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1214\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-DUS\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.146.118.17,194.146.118.18\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8::1f8b:0:1,2001:7f8:8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.146.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8::/64\",\r\n \"peeringDBFacilityId\": 91,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/91\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dusseldorf\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Dusseldorf\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Frankfurt\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"80.81.194.52,80.81.195.11\",\r\n \"microsoftIPv6Address\": \"2001:7f8::1f8b:0:1,2001:7f8::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.192.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8::/64\",\r\n \"peeringDBFacilityId\": 31,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/31\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-FRA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"62.69.146.70\",\r\n \"microsoftIPv6Address\": \"2001:7f8:8:20:0:1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"62.69.146.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:8:20::/64\",\r\n \"peeringDBFacilityId\": 676,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/676\"\r\n },\r\n {\r\n \"exchangeName\": \"NL-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.239.118.163\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"193.239.116.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:13::/64\",\r\n \"peeringDBFacilityId\": 64,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/64\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Frankfurt\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.102.101\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bd::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bd::/64\",\r\n \"peeringDBFacilityId\": 1998,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1998\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SH-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.15.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7a::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.15.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7a::/64\",\r\n \"peeringDBFacilityId\": 866,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/866\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Fujairah\",\r\n \"country\": \"AE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Fujairah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"192.65.185.49\",\r\n \"microsoftIPv6Address\": \"2001:7f8:1c:24a:f25c::49\",\r\n \"facilityIPv4Prefix\": \"192.65.185.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:1c:24a::/64\",\r\n \"peeringDBFacilityId\": 33,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/33\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Geneva\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Geneva\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Hamburg\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.203.105,80.81.203.133\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:1,2001:7f8:3d::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"80.81.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3d::/64\",\r\n \"peeringDBFacilityId\": 74,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/74\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hamburg\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hamburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"FICIX 2 (Helsinki)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.224.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:b::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.224.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:b::/64\",\r\n \"peeringDBFacilityId\": 98,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/98\"\r\n },\r\n {\r\n \"exchangeName\": \"FICIX 1 (Espoo)\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.110.226.62\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7:a::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.110.226.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7:a::/64\",\r\n \"peeringDBFacilityId\": 1332,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1332\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Helsinki\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.86.27\",\r\n \"microsoftIPv6Address\": \"2001:7f8:af::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.86.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:af::/64\",\r\n \"peeringDBFacilityId\": 1464,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1464\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Hong Kong\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"36.255.56.4,36.255.56.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1,2001:de8:7::8075:2\",\r\n \"facilityIPv4Prefix\": \"36.255.56.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:7::/64\",\r\n \"peeringDBFacilityId\": 125,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/125\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX Hong Kong\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.247.139.28\",\r\n \"microsoftIPv6Address\": \"2001:df0:296::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"103.247.139.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:df0:296::/64\",\r\n \"peeringDBFacilityId\": 577,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/577\"\r\n },\r\n {\r\n \"exchangeName\": \"HKIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"123.255.90.222,123.255.91.120\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a0de,2001:7fa:0:1::ca28:a178\",\r\n \"facilityIPv4Prefix\": \"123.255.88.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:0:1::/64\",\r\n \"peeringDBFacilityId\": 42,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/42\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Hong Kong\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.203.158.102\",\r\n \"microsoftIPv6Address\": \"2403:c780:b800:bb00::8075:2\",\r\n \"facilityIPv4Prefix\": \"103.203.158.0/23\",\r\n \"facilityIPv6Prefix\": \"2403:c780:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 1449,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1449\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DRF IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.197.210.37\",\r\n \"microsoftIPv6Address\": \"2606:7c80:3375:50::37\",\r\n \"facilityIPv4Prefix\": \"206.197.210.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:7c80:3375:50::/64\",\r\n \"peeringDBFacilityId\": 267,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/267\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CyrusOne IX Houston\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.96.35,198.32.96.36\",\r\n \"microsoftIPv6Address\": \"2001:478:96::35,2001:478:96::36\",\r\n \"facilityIPv4Prefix\": \"198.32.96.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:96::/64\",\r\n \"peeringDBFacilityId\": 673,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/673\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Hyderabad\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.77.110.10\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:4::10\",\r\n \"facilityIPv4Prefix\": \"103.77.110.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:4::/64\",\r\n \"peeringDBFacilityId\": 1785,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1785\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Istanbul\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.48.11,185.1.48.19\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3f::1f8b:0:1,2001:7f8:3f::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"185.1.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3f::/64\",\r\n \"peeringDBFacilityId\": 1150,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1150\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Istanbul\",\r\n \"country\": \"TR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.30.172.29,103.30.172.62\",\r\n \"microsoftIPv6Address\": \"2001:df0:f080:cdc:cdc:cdc:cdc:13,2001:df0:f080:cdc:cdc:cdc:cdc:14\",\r\n \"facilityIPv4Prefix\": \"103.30.172.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:f080:cdc::/64\",\r\n \"peeringDBFacilityId\": 1228,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1228\"\r\n },\r\n {\r\n \"exchangeName\": \"JKT-IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"119.11.184.84,119.11.184.85\",\r\n \"microsoftIPv6Address\": \"2404:c8:0:a::8075:1,2404:c8:0:a::8075:2\",\r\n \"facilityIPv4Prefix\": \"119.11.184.0/24\",\r\n \"facilityIPv6Prefix\": \"2404:c8:0:a::/64\",\r\n \"peeringDBFacilityId\": 2476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2476\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JEDIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.126.253,185.1.126.248\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d1::1f8b:1,2001:7f8:d1::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"185.1.126.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d1::/64\",\r\n \"peeringDBFacilityId\": 2628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jeddah\",\r\n \"country\": \"SA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Jeddah\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NAPAfrica IX Johannesburg\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"196.60.8.133,196.60.9.133\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d0::133,2001:43f8:6d0::9:133\",\r\n \"facilityIPv4Prefix\": \"196.60.8.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:6d0::/64\",\r\n \"peeringDBFacilityId\": 592,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/592\"\r\n },\r\n {\r\n \"exchangeName\": \"JINX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.14.173,196.223.14.156\",\r\n \"microsoftIPv6Address\": \"2001:43f8:1f0::173,2001:43f8:1f0::156\",\r\n \"facilityIPv4Prefix\": \"196.223.14.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:1f0::/64\",\r\n \"peeringDBFacilityId\": 129,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/129\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DTEL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.25.180.248,193.25.180.249\",\r\n \"microsoftIPv6Address\": \"2001:7f8:63::f8,2001:7f8:63::f9\",\r\n \"facilityIPv4Prefix\": \"193.25.180.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:63::/64\",\r\n \"peeringDBFacilityId\": 327,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/327\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaNET Kiev\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.63.177,185.1.63.178\",\r\n \"microsoftIPv6Address\": \"2001:7f8:6c::432,2001:7f8:6c::433\",\r\n \"facilityIPv4Prefix\": \"185.1.62.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:6c::/64\",\r\n \"peeringDBFacilityId\": 655,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/655\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kiev\",\r\n \"country\": \"UA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kiev\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MyIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.44.214,218.100.44.154\",\r\n \"microsoftIPv6Address\": \"2001:de8:10::a9,2001:de8:10::54\",\r\n \"facilityIPv4Prefix\": \"218.100.44.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:10::/48\",\r\n \"peeringDBFacilityId\": 250,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/250\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Johor Bahru\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.119.232.95,103.119.232.50\",\r\n \"microsoftIPv6Address\": \"2403:4ac0::95,2403:4ac0::50\",\r\n \"facilityIPv4Prefix\": \"103.119.232.0/22\",\r\n \"facilityIPv6Prefix\": \"2403:4ac0::/32\",\r\n \"peeringDBFacilityId\": 2279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2279\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IXPN Lagos\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"196.216.148.85,196.216.148.86\",\r\n \"microsoftIPv6Address\": \"2001:43f8:bb1::85,2001:43f8:bb1::86\",\r\n \"facilityIPv4Prefix\": \"196.216.148.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:bb1::/64\",\r\n \"peeringDBFacilityId\": 488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/488\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lagos\",\r\n \"country\": \"NG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lagos\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Las Vegas\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.205.6\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:9::6\",\r\n \"facilityIPv4Prefix\": \"206.53.205.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:9::/64\",\r\n \"peeringDBFacilityId\": 1628,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1628\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN 1\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.250.60\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:1::6\",\r\n \"facilityIPv4Prefix\": \"193.136.250.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:1::/64\",\r\n \"peeringDBFacilityId\": 72,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/72\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Lisbon\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.131.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d5::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.131.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d5::/64\",\r\n \"peeringDBFacilityId\": 2531,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2531\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Lisbon\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.1.116.33\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c7::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.116.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c7::/64\",\r\n \"peeringDBFacilityId\": 2131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n },\r\n {\r\n \"exchangeName\": \"GigaPIX - LAN2\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"193.136.251.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a:2::6\",\r\n \"facilityIPv4Prefix\": \"193.136.251.0/26\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a:2::/64\",\r\n \"peeringDBFacilityId\": 2849,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2849\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX LON1\",\r\n \"bandwidthInMbps\": 300000,\r\n \"microsoftIPv4Address\": \"195.66.224.112,195.66.224.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:2,2001:7f8:4::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4::/64\",\r\n \"peeringDBFacilityId\": 18,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/18\"\r\n },\r\n {\r\n \"exchangeName\": \"LINX LON2\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"195.66.236.140\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:1::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"195.66.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:1::/64\",\r\n \"peeringDBFacilityId\": 321,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/321\"\r\n },\r\n {\r\n \"exchangeName\": \"LONAP\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"5.57.81.17\",\r\n \"microsoftIPv6Address\": \"2001:7f8:17::1f8b:1\",\r\n \"facilityIPv4Prefix\": \"5.57.80.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:17::/64\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/53\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix London\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.104.57\",\r\n \"microsoftIPv6Address\": \"2001:7f8:be::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:be::/64\",\r\n \"peeringDBFacilityId\": 1997,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1997\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Los Angeles\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.123.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:3::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:3::/64\",\r\n \"peeringDBFacilityId\": 4,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/4\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Los Angeles\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.172.12\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:5::c\",\r\n \"facilityIPv4Prefix\": \"206.53.172.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:5::/64\",\r\n \"peeringDBFacilityId\": 1175,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1175\"\r\n },\r\n {\r\n \"exchangeName\": \"CoreSite - Any2West\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.72.210.143,206.72.211.94\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143,2001:504:13::211:94\",\r\n \"facilityIPv4Prefix\": \"206.72.210.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:13::/64\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/142\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Upper LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"185.79.175.184\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f:1::70\",\r\n \"facilityIPv4Prefix\": \"185.79.175.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f:1::/64\",\r\n \"peeringDBFacilityId\": 1146,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1146\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Madrid\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.192.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:a0::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.192.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:a0::/64\",\r\n \"peeringDBFacilityId\": 1277,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1277\"\r\n },\r\n {\r\n \"exchangeName\": \"ESPANIX Madrid Lower LAN\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.149.1.29\",\r\n \"microsoftIPv6Address\": \"2001:7f8:f::70\",\r\n \"facilityIPv4Prefix\": \"193.149.1.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:f::/64\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/63\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Manama IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"77.69.248.21,77.69.248.18\",\r\n \"microsoftIPv6Address\": \"2001:1a40:10::a500:8075:2,2001:1a40:10::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"77.69.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:1a40:10::/64\",\r\n \"peeringDBFacilityId\": 2631,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2631\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manama\",\r\n \"country\": \"BH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manama\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX Manchester\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.66.244.82,195.66.244.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4:2::1f8b:1,2001:7f8:4:2::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"195.66.244.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:4:2::/64\",\r\n \"peeringDBFacilityId\": 583,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/583\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Manchester\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.101.31\",\r\n \"microsoftIPv6Address\": \"2001:7f8:bc::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.101.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:bc::/64\",\r\n \"peeringDBFacilityId\": 1927,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1927\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Marseille\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.47.13\",\r\n \"microsoftIPv6Address\": \"2001:7f8:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"185.1.47.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:36::/64\",\r\n \"peeringDBFacilityId\": 1149,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1149\"\r\n },\r\n {\r\n \"exchangeName\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.232.14,37.49.232.97\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14,2001:7f8:54:5::97\",\r\n \"facilityIPv4Prefix\": \"37.49.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54:5::/64\",\r\n \"peeringDBFacilityId\": 880,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/880\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIPE Networks Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.13.80\",\r\n \"microsoftIPv6Address\": \"2001:7fa:e::13\",\r\n \"facilityIPv4Prefix\": \"218.100.13.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:e::/64\",\r\n \"peeringDBFacilityId\": 111,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/111\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Melbourne\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.71.165,103.26.71.35\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:30::a5,2001:dea:0:30::23\",\r\n \"facilityIPv4Prefix\": \"103.26.71.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:30::/64\",\r\n \"peeringDBFacilityId\": 779,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/779\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Melbourne\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"183.177.61.5\",\r\n \"microsoftIPv6Address\": \"2001:de8:6:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"183.177.61.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6:1::/64\",\r\n \"peeringDBFacilityId\": 1026,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1026\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Melbourne VIC)\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"218.100.78.2,218.100.78.51\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:1:0:2f2c:0:2,2001:7fa:11:1:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.78.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:1::/64\",\r\n \"peeringDBFacilityId\": 513,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/513\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Melbourne\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.90.24,202.77.90.25\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:6::18,2001:df0:680:6::19\",\r\n \"facilityIPv4Prefix\": \"202.77.90.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:6::/64\",\r\n \"peeringDBFacilityId\": 2762,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2762\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.242.188,198.32.124.189,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:504:0:6::8075:1,2001:478:124::189,2001:504:0:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"198.32.124.0/23,198.32.242.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:478:124::/64,2001:504:0:6::/64\",\r\n \"peeringDBFacilityId\": 17,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/17\"\r\n },\r\n {\r\n \"exchangeName\": \"FL-IX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.41.108.25\",\r\n \"microsoftIPv6Address\": \"2001:504:40:108::1:25\",\r\n \"facilityIPv4Prefix\": \"206.41.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:40:108::/64\",\r\n \"peeringDBFacilityId\": 954,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/954\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MIX-IT\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"217.29.66.212,217.29.66.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:212,2001:7f8:b:100:1d1:a5d0:8075:112\",\r\n \"facilityIPv4Prefix\": \"217.29.66.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:b:100::/64\",\r\n \"peeringDBFacilityId\": 35,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/35\"\r\n },\r\n {\r\n \"exchangeName\": \"TOP-IX\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"194.116.96.88\",\r\n \"microsoftIPv6Address\": \"2001:7f8:23:ffff::88\",\r\n \"facilityIPv4Prefix\": \"194.116.96.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:23:ffff::/64\",\r\n \"peeringDBFacilityId\": 115,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/115\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Milan\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.106.46\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c0::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c0::/64\",\r\n \"peeringDBFacilityId\": 1925,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1925\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MICE\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.255.156,206.108.255.157\",\r\n \"microsoftIPv6Address\": \"2001:504:27::1f8b:0:1,2001:504:27::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"206.108.255.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:27::/64\",\r\n \"peeringDBFacilityId\": 446,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/446\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Minneapolis\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"QIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.179.18.16,198.179.18.95\",\r\n \"microsoftIPv6Address\": \"2001:504:2d::18:16,2001:504:2d::18:95\",\r\n \"facilityIPv4Prefix\": \"198.179.18.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:2d::/48\",\r\n \"peeringDBFacilityId\": 355,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/355\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MSK-IX Moscow\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.208.208.137,195.208.210.76\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137,2001:7f8:20:101::210:76\",\r\n \"facilityIPv4Prefix\": \"195.208.208.0/21\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:20:101::/64\",\r\n \"peeringDBFacilityId\": 100,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/100\"\r\n },\r\n {\r\n \"exchangeName\": \"DATAIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"178.18.225.38\",\r\n \"microsoftIPv6Address\": \"2a03:5f80:4::225:38\",\r\n \"facilityIPv4Prefix\": \"178.18.224.0/22\",\r\n \"facilityIPv6Prefix\": \"2a03:5f80:4::/64\",\r\n \"peeringDBFacilityId\": 358,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/358\"\r\n },\r\n {\r\n \"exchangeName\": \"Eurasia Peering IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.232.60.162,185.232.60.165\",\r\n \"microsoftIPv6Address\": \"2a0d:e180::60:162,2a0d:e180::60:165\",\r\n \"facilityIPv4Prefix\": \"185.232.60.0/23\",\r\n \"facilityIPv6Prefix\": \"2a0d:e180::/64\",\r\n \"peeringDBFacilityId\": 2035,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2035\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"223.31.200.19,223.31.200.106\",\r\n \"microsoftIPv6Address\": \"2001:e48:44:100b:0:a500:8075:1,2001:e48:44:100b:0:a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"223.31.200.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:e48:44:100b::/64\",\r\n \"peeringDBFacilityId\": 1623,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1623\"\r\n },\r\n {\r\n \"exchangeName\": \"Extreme IX Mumbai\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.77.108.26,103.77.108.128\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:2::26,2001:df2:1900:2::128\",\r\n \"facilityIPv4Prefix\": \"103.77.108.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:2::/64\",\r\n \"peeringDBFacilityId\": 1627,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1627\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX Mumbai\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.27.170.5,103.27.170.220\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5,2401:7500:fff6::220\",\r\n \"facilityIPv4Prefix\": \"103.27.170.0/23\",\r\n \"facilityIPv6Prefix\": \"2401:7500:fff6::/64\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2131\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"DE-CIX Munich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:4,2001:7f8:44::1f8b:0:3\",\r\n \"facilityIPv4Prefix\": \"80.81.202.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:44::/64\",\r\n \"peeringDBFacilityId\": 248,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/248\"\r\n },\r\n {\r\n \"exchangeName\": \"ECIX-MUC\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.59.190.8,194.59.190.10\",\r\n \"microsoftIPv6Address\": \"2001:7f8:2c:1000:0:1f8b:0:1,2001:7f8:2c:1000:0:1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"194.59.190.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:2c:1000::/64\",\r\n \"peeringDBFacilityId\": 73,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/73\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Munich\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Munich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KIXP - Nairobi\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"196.223.21.101,196.223.21.102\",\r\n \"microsoftIPv6Address\": \"2001:43f8:60:1::101,2001:43f8:60:1::102\",\r\n \"facilityIPv4Prefix\": \"196.223.21.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:43f8:60:1::/64\",\r\n \"peeringDBFacilityId\": 236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/236\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Nairobi\",\r\n \"country\": \"KE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Nairobi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Extreme IX Delhi\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.120.248.38,45.120.248.13\",\r\n \"microsoftIPv6Address\": \"2001:df2:1900:1::38,2001:df2:1900:1::13\",\r\n \"facilityIPv4Prefix\": \"45.120.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df2:1900:1::/64\",\r\n \"peeringDBFacilityId\": 1323,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1323\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.118.18\",\r\n \"microsoftIPv6Address\": \"2001:504:f::12\",\r\n \"facilityIPv4Prefix\": \"198.32.118.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:f::/64\",\r\n \"peeringDBFacilityId\": 12,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/12\"\r\n },\r\n {\r\n \"exchangeName\": \"NYIIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.160.199\",\r\n \"microsoftIPv6Address\": \"2001:504:1::a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"198.32.160.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1::/64\",\r\n \"peeringDBFacilityId\": 14,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/14\"\r\n },\r\n {\r\n \"exchangeName\": \"DE-CIX New York\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.82.104.215,206.82.104.133\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:2,2001:504:36::1f8b:0:1\",\r\n \"facilityIPv4Prefix\": \"206.82.104.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:504:36::/64\",\r\n \"peeringDBFacilityId\": 804,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/804\"\r\n },\r\n {\r\n \"exchangeName\": \"Digital Realty New York\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.126.115.85,206.126.115.23\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::85,2001:504:17:115::23\",\r\n \"facilityIPv4Prefix\": \"206.126.115.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:17:115::/64\",\r\n \"peeringDBFacilityId\": 325,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/325\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"JPIX OSAKA\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.246.232.110,103.246.232.116\",\r\n \"microsoftIPv6Address\": \"2001:de8:8:6::8075:2,2001:de8:8:6::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.246.232.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8:6::/64\",\r\n \"peeringDBFacilityId\": 564,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/564\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Osaka\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.178.16,210.173.178.26\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:2::8075:1,2001:7fa:7:2::8075:2\",\r\n \"facilityIPv4Prefix\": \"210.173.178.0/25\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:2::/64\",\r\n \"peeringDBFacilityId\": 145,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/145\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.9.75,218.100.9.28\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:2,2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c:2::/64\",\r\n \"peeringDBFacilityId\": 786,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/786\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Osaka\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.190.227.23,203.190.227.22\",\r\n \"microsoftIPv6Address\": \"2001:de8:5:1::8075:2,2001:de8:5:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.227.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5:1::/64\",\r\n \"peeringDBFacilityId\": 948,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/948\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX1\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.55.95,185.1.55.96\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:1::8075,2001:7f8:12:1:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.55.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:1::/64\",\r\n \"peeringDBFacilityId\": 83,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/83\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Oslo\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"France-IX Paris\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"37.49.237.119,37.49.236.5\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::1:119,2001:7f8:54::5\",\r\n \"facilityIPv4Prefix\": \"37.49.236.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:54::/64\",\r\n \"peeringDBFacilityId\": 359,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/359\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Paris\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.42.145.28,195.42.145.236\",\r\n \"microsoftIPv6Address\": \"2001:7f8:43::8075:1,2001:7f8:43::8075:2\",\r\n \"facilityIPv4Prefix\": \"195.42.144.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:43::/64\",\r\n \"peeringDBFacilityId\": 255,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/255\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"MegaIX Perth\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"202.12.243.11\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:50::b\",\r\n \"facilityIPv4Prefix\": \"202.12.243.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:50::/64\",\r\n \"peeringDBFacilityId\": 1235,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1235\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Perth WA)\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"198.32.212.95\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11::2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"198.32.212.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11::/64\",\r\n \"peeringDBFacilityId\": 21,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/21\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Perth\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"103.136.102.34,103.136.102.35\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:3::22,2001:df0:680:3::23\",\r\n \"facilityIPv4Prefix\": \"103.136.102.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:3::/64\",\r\n \"peeringDBFacilityId\": 2718,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2718\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NWAX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.195.124,198.32.195.125\",\r\n \"microsoftIPv6Address\": \"2620:124:2000::124,2620:124:2000::125\",\r\n \"facilityIPv4Prefix\": \"198.32.195.0/24\",\r\n \"facilityIPv6Prefix\": \"2620:124:2000::/64\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/165\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"NIX.CZ\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.210.16.115,91.210.16.116\",\r\n \"microsoftIPv6Address\": \"2001:7f8:14::6b:1,2001:7f8:14::6b:2\",\r\n \"facilityIPv4Prefix\": \"91.210.16.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:14::/64\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/71\"\r\n },\r\n {\r\n \"exchangeName\": \"Peering.cz\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.213.211.215,91.213.211.214\",\r\n \"microsoftIPv6Address\": \"2001:7f8:7f::215,2001:7f8:7f::214\",\r\n \"facilityIPv4Prefix\": \"91.213.211.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:7f::/64\",\r\n \"peeringDBFacilityId\": 713,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/713\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"LINX NoVA\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.55.196.62,206.55.196.63\",\r\n \"microsoftIPv6Address\": \"2001:504:31::1f8b:1,2001:504:31::1f8b:2\",\r\n \"facilityIPv4Prefix\": \"206.55.196.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:31::/64\",\r\n \"peeringDBFacilityId\": 777,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/777\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Rio de Janeiro\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"45.6.52.73,45.6.52.72\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:2::73,2001:12f8:0:2::72\",\r\n \"facilityIPv4Prefix\": \"45.6.52.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:2::/64\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/177\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Namex Rome IXP\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.201.28.116,193.201.28.129\",\r\n \"microsoftIPv6Address\": \"2001:7f8:10::8075,2001:7f8:10::b:8075\",\r\n \"facilityIPv4Prefix\": \"193.201.28.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:10::/64\",\r\n \"peeringDBFacilityId\": 121,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/121\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rome\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Rome\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix San Jose\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.223.117.103,206.223.116.17\",\r\n \"microsoftIPv6Address\": \"2001:504:0:1::8075:2,2001:504:0:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"206.223.116.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:0:1::/64\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/5\"\r\n },\r\n {\r\n \"exchangeName\": \"AMS-IX BA\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.106.72\",\r\n \"microsoftIPv6Address\": \"2001:504:3d:1:0:a500:8075:1\",\r\n \"facilityIPv4Prefix\": \"206.41.106.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:3d:1::/64\",\r\n \"peeringDBFacilityId\": 935,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/935\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"PIT Santiago - PIT Chile\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"200.23.206.210,200.23.206.211\",\r\n \"microsoftIPv6Address\": \"2801:14:9000::8075:1,2801:14:9000::8075:2\",\r\n \"facilityIPv4Prefix\": \"200.23.206.0/24\",\r\n \"facilityIPv6Prefix\": \"2801:14:9000::/64\",\r\n \"peeringDBFacilityId\": 1514,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1514\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Campinas\",\r\n \"bandwidthInMbps\": 60000,\r\n \"microsoftIPv4Address\": \"200.192.108.42\",\r\n \"microsoftIPv6Address\": \"2001:12f8:0:11::42\",\r\n \"facilityIPv4Prefix\": \"200.192.108.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:12f8:0:11::/64\",\r\n \"peeringDBFacilityId\": 415,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/415\"\r\n },\r\n {\r\n \"exchangeName\": \"IX.br (PTT.br) Sao Paulo\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"187.16.218.139,187.16.218.144\",\r\n \"microsoftIPv6Address\": \"2001:12f8::218:139,2001:12f8::218:144\",\r\n \"facilityIPv4Prefix\": \"187.16.208.0/20\",\r\n \"facilityIPv6Prefix\": \"2001:12f8::/64\",\r\n \"peeringDBFacilityId\": 171,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/171\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Columbia IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"10.12.97.129\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"10.12.97.128/26\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n },\r\n {\r\n \"exchangeName\": \"SIX Seattle\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.81.80.30,206.81.80.68\",\r\n \"microsoftIPv6Address\": \"2001:504:16::1f8b,2001:504:16::68:0:1f8b\",\r\n \"facilityIPv4Prefix\": \"206.81.80.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:16::/64\",\r\n \"peeringDBFacilityId\": 13,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/13\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Seattle\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.171.13\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:4::d\",\r\n \"facilityIPv4Prefix\": \"206.53.171.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:4::/64\",\r\n \"peeringDBFacilityId\": 1174,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1174\"\r\n },\r\n {\r\n \"exchangeName\": \"Pacific Wave\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"207.231.240.7,207.231.242.7,207.231.241.7,207.231.243.7,207.231.245.7,207.231.248.7\",\r\n \"microsoftIPv6Address\": \"2001:504:b:10::7,2001:504:b:11::7,2001:504:b:80::7,2001:504:b:81::7,2001:504:b:88::7,2001:504:b:89::7\",\r\n \"facilityIPv4Prefix\": \"207.231.240.0/24,207.231.242.0/24,207.231.241.0/24,207.231.243.0/24,207.231.245.0/24,207.231.248.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:b:10::/64,2001:504:b:11::/64,2001:504:b:80::/64,2001:504:b:81::/64,2001:504:b:88::/64,2001:504:b:89::/64\",\r\n \"peeringDBFacilityId\": 82,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/82\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"KINX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"192.145.251.47,192.145.251.48\",\r\n \"microsoftIPv6Address\": \"2001:7fa:8::13,2001:7fa:8::14\",\r\n \"facilityIPv4Prefix\": \"192.145.251.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:8::/64\",\r\n \"peeringDBFacilityId\": 52,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/52\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SOX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"198.32.141.141\",\r\n \"microsoftIPv6Address\": \"2001:de8:d::8069:1\",\r\n \"facilityIPv4Prefix\": \"198.32.141.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:d::/64\",\r\n \"peeringDBFacilityId\": 93,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/93\"\r\n },\r\n {\r\n \"exchangeName\": \"SGIX\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.16.102.23\",\r\n \"microsoftIPv6Address\": \"2001:de8:12:100::23\",\r\n \"facilityIPv4Prefix\": \"103.16.102.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:12:100::/64\",\r\n \"peeringDBFacilityId\": 429,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/429\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Singapore\",\r\n \"bandwidthInMbps\": 200000,\r\n \"microsoftIPv4Address\": \"27.111.228.57,27.111.229.172\",\r\n \"microsoftIPv6Address\": \"2001:de8:4::8075:1,2001:de8:4::8075:2\",\r\n \"facilityIPv4Prefix\": \"27.111.228.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:4::/64\",\r\n \"peeringDBFacilityId\": 158,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/158\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.41.12.23\",\r\n \"microsoftIPv6Address\": \"2001:ded::17\",\r\n \"facilityIPv4Prefix\": \"103.41.12.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:ded::/48\",\r\n \"peeringDBFacilityId\": 965,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/965\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Singapore\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"103.231.152.101\",\r\n \"microsoftIPv6Address\": \"2001:df5:b800:bb00::8075:1\",\r\n \"facilityIPv4Prefix\": \"103.231.152.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:df5:b800:bb00::/64\",\r\n \"peeringDBFacilityId\": 909,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/909\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"BIX.BG\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.169.198.74,193.169.198.85\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1,2001:7f8:58::1f8b:0:2\",\r\n \"facilityIPv4Prefix\": \"193.169.198.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:58::/48\",\r\n \"peeringDBFacilityId\": 331,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/331\"\r\n },\r\n {\r\n \"exchangeName\": \"NetIX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"193.218.0.150\",\r\n \"microsoftIPv6Address\": \"2001:67c:29f0::8075:1\",\r\n \"facilityIPv4Prefix\": \"193.218.0.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:67c:29f0::/64\",\r\n \"peeringDBFacilityId\": 699,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/699\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sofia\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"91.212.235.6\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9f::6\",\r\n \"facilityIPv4Prefix\": \"91.212.235.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:9f::/64\",\r\n \"peeringDBFacilityId\": 1056,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1056\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"SIX Stavanger\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.65.227,185.1.65.228\",\r\n \"microsoftIPv6Address\": \"2001:7f8:12:6::8075,2001:7f8:12:6:0:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"185.1.65.224/27\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:12:6::/64\",\r\n \"peeringDBFacilityId\": 1419,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1419\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stavanger\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stavanger\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.123.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"194.68.123.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:ff::/64\",\r\n \"peeringDBFacilityId\": 70,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/70\"\r\n },\r\n {\r\n \"exchangeName\": \"STHIX - Stockholm\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"192.121.80.59,192.121.80.117\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3e:0:a500:0:8075:1,2001:7f8:3e:0:a500:0:8075:2\",\r\n \"facilityIPv4Prefix\": \"192.121.80.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:3e::/64\",\r\n \"peeringDBFacilityId\": 172,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/172\"\r\n },\r\n {\r\n \"exchangeName\": \"Equinix Stockholm\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"185.1.107.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c1::8075:1\",\r\n \"facilityIPv4Prefix\": \"185.1.107.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c1::/64\",\r\n \"peeringDBFacilityId\": 1923,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1923\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU1500\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"194.68.128.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fe::181\",\r\n \"facilityIPv4Prefix\": \"194.68.128.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fe::/64\",\r\n \"peeringDBFacilityId\": 2846,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2846\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm BLUE -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fb::181\",\r\n \"facilityIPv4Prefix\": \"195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fb::/64\",\r\n \"peeringDBFacilityId\": 2847,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2847\"\r\n },\r\n {\r\n \"exchangeName\": \"Netnod Stockholm GREEN -- MTU4470\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64\",\r\n \"peeringDBFacilityId\": 2845,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2845\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"45.127.172.36,45.127.173.62\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1,2001:de8:6::8075:2\",\r\n \"facilityIPv4Prefix\": \"45.127.172.0/22\",\r\n \"facilityIPv6Prefix\": \"2001:de8:6::/64\",\r\n \"peeringDBFacilityId\": 94,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/94\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Sydney\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"103.26.69.104,103.26.68.7\",\r\n \"microsoftIPv6Address\": \"2001:dea:0:10::168,2001:dea:0:10::7\",\r\n \"facilityIPv4Prefix\": \"103.26.68.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:dea:0:10::/64\",\r\n \"peeringDBFacilityId\": 780,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/780\"\r\n },\r\n {\r\n \"exchangeName\": \"IX Australia (Sydney NSW)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.53.70,218.100.52.4\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:4:0:2f2c:0:2,2001:7fa:11:4:0:2f2c:0:1\",\r\n \"facilityIPv4Prefix\": \"218.100.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:11:4::/64\",\r\n \"peeringDBFacilityId\": 716,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/716\"\r\n },\r\n {\r\n \"exchangeName\": \"PIPE Networks Sydney\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"218.100.2.162\",\r\n \"microsoftIPv6Address\": \"2001:7fa:b::162\",\r\n \"facilityIPv4Prefix\": \"218.100.2.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:b::/64\",\r\n \"peeringDBFacilityId\": 105,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/105\"\r\n },\r\n {\r\n \"exchangeName\": \"EdgeIX - Sydney\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"202.77.88.54,202.77.88.55\",\r\n \"microsoftIPv6Address\": \"2001:df0:680:5::36,2001:df0:680:5::37\",\r\n \"facilityIPv4Prefix\": \"202.77.88.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:df0:680:5::/64\",\r\n \"peeringDBFacilityId\": 2761,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/2761\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TPIX-TW\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"203.163.222.15,203.163.222.85\",\r\n \"microsoftIPv6Address\": \"2406:d400:1:133:203:163:222:15,2406:d400:1:133:203:163:222:85\",\r\n \"facilityIPv4Prefix\": \"203.163.222.0/24\",\r\n \"facilityIPv6Prefix\": \"2406:d400:1:133:203:163:222:0/112\",\r\n \"peeringDBFacilityId\": 823,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/823\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"203.190.230.34,203.190.230.24\",\r\n \"microsoftIPv6Address\": \"2001:de8:5::8075:2,2001:de8:5::8075:1\",\r\n \"facilityIPv4Prefix\": \"203.190.230.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:de8:5::/64\",\r\n \"peeringDBFacilityId\": 167,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/167\"\r\n },\r\n {\r\n \"exchangeName\": \"JPIX TOKYO\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.171.224.116,210.171.224.110\",\r\n \"microsoftIPv6Address\": \"2001:de8:8::8075:2,2001:de8:8::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.171.224.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:8::/64\",\r\n \"peeringDBFacilityId\": 30,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/30\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"218.100.7.63,218.100.6.76\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:2,2001:de8:c::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.6.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:de8:c::/64\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/126\"\r\n },\r\n {\r\n \"exchangeName\": \"JPNAP Tokyo\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"210.173.177.11,210.173.176.16\",\r\n \"microsoftIPv6Address\": \"2001:7fa:7:1::8075:2,2001:7fa:7:1::8075:1\",\r\n \"facilityIPv4Prefix\": \"210.173.176.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7fa:7:1::/64\",\r\n \"peeringDBFacilityId\": 95,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/95\"\r\n },\r\n {\r\n \"exchangeName\": \"BBIX Tokyo (MAPS)\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"101.203.80.2,101.203.80.1\",\r\n \"microsoftIPv6Address\": \"\",\r\n \"facilityIPv4Prefix\": \"101.203.80.0/23\",\r\n \"facilityIPv6Prefix\": \"\",\r\n \"peeringDBFacilityId\": 65536\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"TorIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"206.108.34.160,206.108.35.109\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::34:160,2001:504:1a::35:109\",\r\n \"facilityIPv4Prefix\": \"206.108.34.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:504:1a::34:0/111\",\r\n \"peeringDBFacilityId\": 24,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/24\"\r\n },\r\n {\r\n \"exchangeName\": \"MegaIX Toronto\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"206.53.203.7\",\r\n \"microsoftIPv6Address\": \"2606:a980:0:8::7\",\r\n \"facilityIPv4Prefix\": \"206.53.203.0/24\",\r\n \"facilityIPv6Prefix\": \"2606:a980:0:8::/64\",\r\n \"peeringDBFacilityId\": 1307,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/1307\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VANIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"206.41.104.41,206.41.104.42\",\r\n \"microsoftIPv6Address\": \"2001:504:39::41,2001:504:39::42\",\r\n \"facilityIPv4Prefix\": \"206.41.104.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:504:39::/64\",\r\n \"peeringDBFacilityId\": 863,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/863\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"VIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"193.203.0.164,193.203.0.165\",\r\n \"microsoftIPv6Address\": \"2001:7f8:30:0:2:2:0:8075,2001:7f8:30:0:2:1:0:8075\",\r\n \"facilityIPv4Prefix\": \"193.203.0.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:30::/64\",\r\n \"peeringDBFacilityId\": 50,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/50\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Warsaw\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"195.182.218.146,195.182.218.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:42::a500:8075:1,2001:7f8:42::a500:8075:2\",\r\n \"facilityIPv4Prefix\": \"195.182.218.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:42::/48\",\r\n \"peeringDBFacilityId\": 264,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/264\"\r\n },\r\n {\r\n \"exchangeName\": \"TPIX Warsaw\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"195.149.232.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:27::8075:1\",\r\n \"facilityIPv4Prefix\": \"195.149.232.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:27::/48\",\r\n \"peeringDBFacilityId\": 482,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/482\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"CIX\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.87.110,185.1.87.120\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25:0,2001:7f8:28::45:0\",\r\n \"facilityIPv4Prefix\": \"185.1.87.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:28::/64\",\r\n \"peeringDBFacilityId\": 303,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/303\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"Equinix Zurich\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"194.42.48.50\",\r\n \"microsoftIPv6Address\": \"2001:7f8:c:8235:194:42:48:50\",\r\n \"facilityIPv4Prefix\": \"194.42.48.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235::/64\",\r\n \"peeringDBFacilityId\": 29,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/29\"\r\n },\r\n {\r\n \"exchangeName\": \"SwissIX\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"91.206.52.152,91.206.52.247\",\r\n \"microsoftIPv6Address\": \"2001:7f8:24::98,2001:7f8:24::f7\",\r\n \"facilityIPv4Prefix\": \"91.206.52.0/23\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:24::/64\",\r\n \"peeringDBFacilityId\": 60,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/60\"\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"Central US\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4807/providers/Microsoft.Peering/peerings/ps6967?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQ4MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzNjk2Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4372/providers/Microsoft.Peering/peerings/ps804?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQzNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODA0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.142\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"7c289878-56fe-4136-b993-89e662602dcf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.136\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"e954d2df-16e2-4352-b0c6-f4659284acfd\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_26646\": \"Active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.149\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"973575b9-82bb-4e83-b870-e33d8d495619\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.139\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"07f80e4f-14ae-409d-9880-d756326703c7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64960\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f3980c79-803e-499a-af17-fccfabc90df6" + "7ac9706a-c049-4445-a3e2-6dfbd9cdfb57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1151" + "1153" ] }, "ResponseHeaders": { @@ -531,16 +531,16 @@ "no-cache" ], "x-ms-request-id": [ - "0fbffea6-f450-4add-9b18-334ca102c59d" + "0da43093-3400-4edc-a795-a6afb6bc5f50" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "59" ], "x-ms-correlation-request-id": [ - "af622169-a549-4a69-9544-f19f436a4cf0" + "48a88b44-7c8d-4992-b4e6-665cdd90dfae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225859Z:af622169-a549-4a69-9544-f19f436a4cf0" + "NORTHEUROPE:20210409T074616Z:48a88b44-7c8d-4992-b4e6-665cdd90dfae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,10 +549,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:58 GMT" + "Fri, 09 Apr 2021 07:46:15 GMT" ], "Content-Length": [ - "2069" + "2018" ], "Content-Type": [ "application/json; charset=utf-8" @@ -561,32 +561,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.142\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"7c289878-56fe-4136-b993-89e662602dcf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.136\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"e954d2df-16e2-4352-b0c6-f4659284acfd\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_26646\": \"Active\"\r\n },\r\n \"eTag\": \"bbfb6226-0c09-4fe7-8df9-0e93279c297c\",\r\n \"name\": \"ps6967\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4807/providers/Microsoft.Peering/peerings/ps6967\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.149\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"973575b9-82bb-4e83-b870-e33d8d495619\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.139\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"07f80e4f-14ae-409d-9880-d756326703c7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64960\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps804\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4372/providers/Microsoft.Peering/peerings/ps804\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4807/providers/Microsoft.Peering/peerings/ps6967?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQ4MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzNjk2Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4372/providers/Microsoft.Peering/peerings/ps804?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQzNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODA0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.142\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"7c289878-56fe-4136-b993-89e662602dcf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.136\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"e954d2df-16e2-4352-b0c6-f4659284acfd\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.142\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"7c289878-56fe-4136-b993-89e662602dcf\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_26646\": \"Active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.149\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"973575b9-82bb-4e83-b870-e33d8d495619\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.139\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"07f80e4f-14ae-409d-9880-d756326703c7\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.149\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"973575b9-82bb-4e83-b870-e33d8d495619\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64960\": \"Active\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "27beb75a-3688-4262-9270-8cfcdab349b1" + "07110bc9-d470-45c3-9d98-5da70003040c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2035" + "2038" ] }, "ResponseHeaders": { @@ -597,16 +597,16 @@ "no-cache" ], "x-ms-request-id": [ - "54104e38-970c-4117-8d12-fe83424c808e" + "5a1f1786-eed8-4dad-acfe-c7ea354f8b5c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "58" ], "x-ms-correlation-request-id": [ - "90e993ae-e7ee-4273-a65a-6de8160aa92e" + "2878055c-e0f3-44ed-9c19-3444c5b6aba0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225900Z:90e993ae-e7ee-4273-a65a-6de8160aa92e" + "NORTHEUROPE:20210409T074616Z:2878055c-e0f3-44ed-9c19-3444c5b6aba0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,10 +615,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:59 GMT" + "Fri, 09 Apr 2021 07:46:16 GMT" ], "Content-Length": [ - "138" + "161" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,26 +627,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"code\": \"BadArgument\",\r\n \"message\": \"ConnectionIdentifier:7c289878-56fe-4136-b993-89e662602dcf is already being used in peering.\"\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadArgument\",\r\n \"message\": \"ConnectionIdentifier:973575b9-82bb-4e83-b870-e33d8d495619 is already being used in peering.\"\r\n }\r\n}", "StatusCode": 400 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4807/providers/Microsoft.Peering/peerings/ps6967?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQ4MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzNjk2Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4372/providers/Microsoft.Peering/peerings/ps804?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQzNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODA0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a6dc5a2-9af7-4724-9dd1-820821123c1b" + "07110bc9-d470-45c3-9d98-5da70003040c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -657,16 +657,16 @@ "no-cache" ], "x-ms-request-id": [ - "6b88a090-8f33-4e7f-889c-53012dd8a47a" + "6dfc860c-0719-4273-906a-1b8755bbc360" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "58" + "59" ], "x-ms-correlation-request-id": [ - "8543deae-f71c-40fc-a24c-8abfeb70c1bb" + "16df9896-4fdd-4af2-b0c2-91af4e7bbdaf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225859Z:8543deae-f71c-40fc-a24c-8abfeb70c1bb" + "NORTHEUROPE:20210409T074616Z:16df9896-4fdd-4af2-b0c2-91af4e7bbdaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,10 +675,10 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:58:59 GMT" + "Fri, 09 Apr 2021 07:46:16 GMT" ], "Content-Length": [ - "2069" + "2018" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,26 +687,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.142\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"7c289878-56fe-4136-b993-89e662602dcf\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.136\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 2569,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"320ba3c11a2e523be31011600cbba42a\"\r\n },\r\n \"connectionIdentifier\": \"e954d2df-16e2-4352-b0c6-f4659284acfd\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tag2\": \"value2\",\r\n \"tfs_26646\": \"Active\"\r\n },\r\n \"eTag\": \"bbfb6226-0c09-4fe7-8df9-0e93279c297c\",\r\n \"name\": \"ps6967\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4807/providers/Microsoft.Peering/peerings/ps6967\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.149\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"973575b9-82bb-4e83-b870-e33d8d495619\"\r\n },\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.139\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 18913,\r\n \"maxPrefixesAdvertisedV6\": 0,\r\n \"md5AuthenticationKey\": \"b71a89f70573c31351779a765d52dd93\"\r\n },\r\n \"connectionIdentifier\": \"07f80e4f-14ae-409d-9880-d756326703c7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"tfs_64960\": \"Active\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"name\": \"ps804\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4372/providers/Microsoft.Peering/peerings/ps804\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4807/providers/Microsoft.Peering/peerings/ps6967?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQ4MDcvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzNjk2Nz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/MockRg4372/providers/Microsoft.Peering/peerings/ps804?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL01vY2tSZzQzNzIvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL3BzODA0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87ed53a7-14a6-4eea-9866-e3dc4abb7495" + "88526145-ddcf-435d-839d-9e593ef411f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -717,16 +717,16 @@ "no-cache" ], "x-ms-request-id": [ - "9d93fb04-1b75-4ba0-b30f-5b5c56812a71" + "d2ac6823-5838-47cb-84a2-68fc591daa4e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "2510e1bb-4bf6-4196-a640-1d91dd86339a" + "bff5461f-ebad-4339-b832-424b98451b99" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225903Z:2510e1bb-4bf6-4196-a640-1d91dd86339a" + "NORTHEUROPE:20210409T074619Z:bff5461f-ebad-4339-b832-424b98451b99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,7 +735,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:59:02 GMT" + "Fri, 09 Apr 2021 07:46:18 GMT" ], "Expires": [ "-1" @@ -748,22 +748,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/2229-Global3048?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8yMjI5LUdsb2JhbDMwNDg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/34868-Global815?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy8zNDg2OC1HbG9iYWw4MTU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05999dcb-1e30-4a16-9187-0eba6881d8d6" + "5f22b5de-fbb7-47b7-9512-e9555ab9fdbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.1.1.0" ] }, "ResponseHeaders": { @@ -774,16 +774,16 @@ "no-cache" ], "x-ms-request-id": [ - "984717f8-3d28-4d67-be8b-84e3633a7c95" + "2745cfbc-5a16-407b-b89f-5cf4f1835580" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14994" ], "x-ms-correlation-request-id": [ - "52e29784-aca6-4e8a-ba15-36cddcf73070" + "ac6eb3e7-5b04-419a-93df-b2fd588da593" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225904Z:52e29784-aca6-4e8a-ba15-36cddcf73070" + "NORTHEUROPE:20210409T074619Z:ac6eb3e7-5b04-419a-93df-b2fd588da593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,7 +792,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:59:03 GMT" + "Fri, 09 Apr 2021 07:46:19 GMT" ], "Expires": [ "-1" @@ -805,22 +805,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4807?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQ4MDc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/MockRg4372?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL01vY2tSZzQzNzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d2eb381-7566-407a-9cfd-7f373c4dda67" + "3a7ce9f3-9cb7-46cf-8e4f-563dd3c7fde1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -831,7 +831,7 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0ODA3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0MzcyLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" @@ -840,13 +840,13 @@ "14999" ], "x-ms-request-id": [ - "d335aafb-1ba8-4cf9-b67c-e5ae3108d7a9" + "a1297633-c27d-426b-ab3a-1e0ffbc07af1" ], "x-ms-correlation-request-id": [ - "d335aafb-1ba8-4cf9-b67c-e5ae3108d7a9" + "a1297633-c27d-426b-ab3a-1e0ffbc07af1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225906Z:d335aafb-1ba8-4cf9-b67c-e5ae3108d7a9" + "NORTHEUROPE:20210409T074620Z:a1297633-c27d-426b-ab3a-1e0ffbc07af1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -855,7 +855,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:59:06 GMT" + "Fri, 09 Apr 2021 07:46:19 GMT" ], "Expires": [ "-1" @@ -868,16 +868,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0ODA3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzBPREEzTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0MzcyLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzBNemN5TFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a7ce9f3-9cb7-46cf-8e4f-563dd3c7fde1" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -888,7 +891,7 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0ODA3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0MzcyLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" @@ -897,13 +900,13 @@ "14997" ], "x-ms-request-id": [ - "c9cf0518-bea9-4aba-9774-3ae35749cb7e" + "a9f0f6dd-6b3c-484d-93d7-60de0ec4d7a7" ], "x-ms-correlation-request-id": [ - "c9cf0518-bea9-4aba-9774-3ae35749cb7e" + "a9f0f6dd-6b3c-484d-93d7-60de0ec4d7a7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225921Z:c9cf0518-bea9-4aba-9774-3ae35749cb7e" + "NORTHEUROPE:20210409T074636Z:a9f0f6dd-6b3c-484d-93d7-60de0ec4d7a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -912,7 +915,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:59:20 GMT" + "Fri, 09 Apr 2021 07:46:35 GMT" ], "Expires": [ "-1" @@ -925,16 +928,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0ODA3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzBPREEzTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0MzcyLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzBNemN5TFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a7ce9f3-9cb7-46cf-8e4f-563dd3c7fde1" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -945,7 +951,7 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0ODA3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0MzcyLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01" ], "Retry-After": [ "15" @@ -954,13 +960,13 @@ "14996" ], "x-ms-request-id": [ - "ee8c12a5-f19b-46d0-a9c6-1cdbf4a30444" + "e832fecc-56ab-405e-8357-fa6b775d7c99" ], "x-ms-correlation-request-id": [ - "ee8c12a5-f19b-46d0-a9c6-1cdbf4a30444" + "e832fecc-56ab-405e-8357-fa6b775d7c99" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225936Z:ee8c12a5-f19b-46d0-a9c6-1cdbf4a30444" + "NORTHEUROPE:20210409T074651Z:e832fecc-56ab-405e-8357-fa6b775d7c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,7 +975,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:59:36 GMT" + "Fri, 09 Apr 2021 07:46:51 GMT" ], "Expires": [ "-1" @@ -982,16 +988,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0ODA3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzBPREEzTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0MzcyLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzBNemN5TFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a7ce9f3-9cb7-46cf-8e4f-563dd3c7fde1" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -1005,13 +1014,13 @@ "14995" ], "x-ms-request-id": [ - "1a9117b2-f02b-49ff-9698-7e905e5de6be" + "a6a1fc61-f756-4b16-b7c7-b361dae32444" ], "x-ms-correlation-request-id": [ - "1a9117b2-f02b-49ff-9698-7e905e5de6be" + "a6a1fc61-f756-4b16-b7c7-b361dae32444" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225952Z:1a9117b2-f02b-49ff-9698-7e905e5de6be" + "NORTHEUROPE:20210409T074706Z:a6a1fc61-f756-4b16-b7c7-b361dae32444" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1020,7 +1029,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:59:51 GMT" + "Fri, 09 Apr 2021 07:47:05 GMT" ], "Expires": [ "-1" @@ -1033,16 +1042,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0ODA3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzBPREEzTFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1NT0NLUkc0MzcyLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFOVDBOTFVrYzBNemN5TFVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a7ce9f3-9cb7-46cf-8e4f-563dd3c7fde1" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -1056,13 +1068,13 @@ "14994" ], "x-ms-request-id": [ - "ef171487-0d01-4e0c-bf57-f8285343d317" + "64faec7a-be6d-41b6-9741-8cedb23e8738" ], "x-ms-correlation-request-id": [ - "ef171487-0d01-4e0c-bf57-f8285343d317" + "64faec7a-be6d-41b6-9741-8cedb23e8738" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200514T225952Z:ef171487-0d01-4e0c-bf57-f8285343d317" + "NORTHEUROPE:20210409T074707Z:64faec7a-be6d-41b6-9741-8cedb23e8738" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,7 +1083,7 @@ "nosniff" ], "Date": [ - "Thu, 14 May 2020 22:59:51 GMT" + "Fri, 09 Apr 2021 07:47:07 GMT" ], "Expires": [ "-1" @@ -1086,15 +1098,15 @@ ], "Names": { "Test-SetNewMd5Hash": [ - "2229-Global3048", - "AS2229-Global9396", - "MockRg4807", - "ps6967" + "34868-Global815", + "AS34868-Global214", + "MockRg4372", + "ps804" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "Hash": "320ba3c11a2e523be31011600cbba42a", - "MaxPrefixV4": "2569" + "Hash": "b71a89f70573c31351779a765d52dd93", + "MaxPrefixV4": "18913" } } \ No newline at end of file diff --git a/src/Peering/Peering.sln b/src/Peering/Peering.sln index faf3cd7361dd..b348f69cd829 100644 --- a/src/Peering/Peering.sln +++ b/src/Peering/Peering.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27703.2042 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31005.135 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peering", "Peering\Peering.csproj", "{42656543-77AD-4968-BA4B-BE0778705625}" ProjectSection(ProjectDependencies) = postProject @@ -47,6 +47,10 @@ Global {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.Build.0 = Release|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/src/Peering/Peering/Az.Peering.psd1 b/src/Peering/Peering/Az.Peering.psd1 index 3855deb5b784..cc32909273a5 100644 --- a/src/Peering/Peering/Az.Peering.psd1 +++ b/src/Peering/Peering/Az.Peering.psd1 @@ -89,7 +89,8 @@ CmdletsToExport = 'Get-AzPeering', 'Get-AzPeerAsn', 'New-AzPeerAsn', 'New-AzPeer 'Get-AzPeeringRegisteredPrefix', 'Remove-AzPeeringRegisteredPrefix', 'New-AzPeeringRegisteredAsn', 'Set-AzPeeringRegisteredAsn', 'Get-AzPeeringRegisteredAsn', 'Remove-AzPeeringRegisteredAsn', - 'New-AzPeerAsnContactDetail', 'Get-AzPeeringReceivedRoute' + 'New-AzPeerAsnContactDetail', 'Get-AzPeeringReceivedRoute', + 'Get-AzPeeringCdnPeeringPrefix' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Peering/Peering/ChangeLog.md b/src/Peering/Peering/ChangeLog.md index 5c2e78cc3484..9b07b2dd6844 100644 --- a/src/Peering/Peering/ChangeLog.md +++ b/src/Peering/Peering/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Added support for cdn peering prefixes ## Version 0.2.0 * Adding support for Received routes diff --git a/src/Peering/Peering/Common/Constants.cs b/src/Peering/Peering/Common/Constants.cs index 080e1c0d8406..9ba1b7a20665 100644 --- a/src/Peering/Peering/Common/Constants.cs +++ b/src/Peering/Peering/Common/Constants.cs @@ -38,6 +38,7 @@ public static class Constants public const string AzPeeringServiceLocation = "AzPeeringServiceLocation"; public const string AzPeeringServiceProvider = "AzPeeringServiceProvider"; public const string AzPeeringServiceCountry = "AzPeeringServiceCountry"; + public const string AzPeeringCdnPeeringPrefix = "AzPeeringCdnPeeringPrefix"; #endregion #region Kind @@ -310,7 +311,13 @@ public static class Constants "The Physical Location Different from Azure Region. Use Get-AzPeeringLocation -Kind use City name as key."; /// - /// PeeringLocationHelp + /// PeeringLocationForCdnPrefixesHelp + /// + public const string PeeringLocationForCdnPrefixesHelp = + "The Physical Location Different from Azure Region. Use Get-AzPeeringLocation -Kind use City name as key to check if the peering location exists or Use Get-AzPeeringLocation -Kind to get all the peering locations to select."; + + /// + /// PeeringServiceLocationHelp /// public const string PeeringServiceLocationHelp = "The Physical Location Different from Azure Region. Use Get-AzPeeringServiceLocation [-Country ]"; @@ -375,6 +382,11 @@ public static class Constants /// public const string MD5AuthenticationKeyHelp = "The MD5 authentication key for session."; + /// + /// The ID used within Microsoft's peering provisioning system to track the connection + /// + public const string MicrosoftTrackingId = "The ID used within Microsoft's peering provisioning system to track the connection"; + /// /// The metro help. /// diff --git a/src/Peering/Peering/Common/PeeringBaseCmdlet.cs b/src/Peering/Peering/Common/PeeringBaseCmdlet.cs index e2ab935766b0..c0ec15a984a5 100644 --- a/src/Peering/Peering/Common/PeeringBaseCmdlet.cs +++ b/src/Peering/Peering/Common/PeeringBaseCmdlet.cs @@ -22,6 +22,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Peering.Common using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; + using Microsoft.Azure.Commands.Common.Exceptions; using Microsoft.Azure.Commands.Peering.Properties; using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.Management.Peering; @@ -125,6 +126,11 @@ public IPeeringManagementClient PeeringManagementClient /// public IPeeringServicesOperations PeeringServicesClient => this.PeeringManagementClient.PeeringServices; + /// + /// The cdn peering prefix client + /// + public ICdnPeeringPrefixesOperations CdnPeeringPrefixesOperationsClient => this.PeeringManagementClient.CdnPeeringPrefixes; + /// /// The to peering. /// @@ -278,10 +284,10 @@ public PSPeeringServiceLocation ToPeeringServiceLocationPS(object obj) } /// - /// The top s peering location. + /// The to ps peering location. /// /// - /// The oc. + /// The peering. /// /// /// The . @@ -298,6 +304,27 @@ public PSPeeringLocation TopSPeeringLocation(object peering) } } + /// + /// Convert to powershell cdn peering prefix + /// + /// + /// The cdn prefix. + /// + /// + /// The . + /// + public PSCdnPeeringPrefix ToPSCdnPeeringPrefix(object cdnPrefix) + { + try + { + return PeeringResourceManagerProfile.Mapper.Map(cdnPrefix); + } + catch (InvalidOperationException mapException) + { + throw new AzPSInvalidOperationException(String.Format(Resources.Error_Mapping, mapException)); + } + } + /// /// The valid bandwidth. /// @@ -313,13 +340,10 @@ public bool ValidBandwidth(int? bandwidthInMbps) { this.WriteVerbose($"validating bandwidth: {bandwidthInMbps}"); if (bandwidthInMbps <= 0) - throw new PSArgumentException(string.Format(Resources.Error_BandwidthTooLow, bandwidthInMbps)); + throw new AzPSArgumentException(string.Format(Resources.Error_BandwidthTooLow, bandwidthInMbps), "bandwidthInMbps"); if (bandwidthInMbps % Constants.MinRange != 0) - throw new PSArgumentException( - string.Format(Resources.Error_BandwidthIncorrectFormat, bandwidthInMbps, Constants.MinRange)); - if (bandwidthInMbps > Constants.MaxRange) - throw new PSArgumentException( - string.Format(Resources.Error_BandwidthTooHigh, bandwidthInMbps, Constants.MaxRange)); + throw new AzPSArgumentOutOfRangeException( + string.Format(Resources.Error_BandwidthIncorrectFormat, bandwidthInMbps, Constants.MinRange), "bandwidthInMbps"); return true; } diff --git a/src/Peering/Peering/Common/PeeringResourceManagerProfile.cs b/src/Peering/Peering/Common/PeeringResourceManagerProfile.cs index 01f481e321e8..dd51c192f8a1 100644 --- a/src/Peering/Peering/Common/PeeringResourceManagerProfile.cs +++ b/src/Peering/Peering/Common/PeeringResourceManagerProfile.cs @@ -92,6 +92,7 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); // CNM to MNM cfg.CreateMap(); cfg.CreateMap(); @@ -121,6 +122,7 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); //View Models cfg.CreateMap(); cfg.CreateMap(); diff --git a/src/Peering/Peering/Direct/NewAzureDirectPeeringConnectionCommand.cs b/src/Peering/Peering/Direct/NewAzureDirectPeeringConnectionCommand.cs index dbe342568959..9407cadfd214 100644 --- a/src/Peering/Peering/Direct/NewAzureDirectPeeringConnectionCommand.cs +++ b/src/Peering/Peering/Direct/NewAzureDirectPeeringConnectionCommand.cs @@ -89,7 +89,7 @@ public class NewAzureDirectPeeringConnectionCommand : PeeringBaseCmdlet HelpMessage = Constants.BandwidthHelp, ParameterSetName = Constants.ParameterSetNameIPv4Prefix + Constants.ParameterSetNameIPv6Prefix)] [PSArgumentCompleter("10000", "20000", "30000", "40000", "50000", "60000", "70000", "80000", "90000", "100000")] - [ValidateRange(Constants.MinRange, Constants.MaxRange), ValidateNotNullOrEmpty] + [ValidateNotNullOrEmpty, ValidateRange(Constants.MinRange, int.MaxValue)] public int? BandwidthInMbps { get; set; } /// diff --git a/src/Peering/Peering/Models/PSCdnPeeringPrefix.cs b/src/Peering/Peering/Models/PSCdnPeeringPrefix.cs new file mode 100644 index 000000000000..b9351c5db2ac --- /dev/null +++ b/src/Peering/Peering/Models/PSCdnPeeringPrefix.cs @@ -0,0 +1,107 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.PowerShell.Cmdlets.Peering.Models +{ + using Newtonsoft.Json; + + /// + /// The CDN peering prefix. + /// + [Rest.Serialization.JsonTransformation] + public partial class PSCdnPeeringPrefix + { + /// + /// Initializes a new instance of the PSPeeringCdnPeeringPrefix class. + /// + public PSCdnPeeringPrefix() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PSPeeringCdnPeeringPrefix class. + /// + /// The prefix. + /// The azure region. + /// The azure service + /// The bool indicating if its primary region + /// The bgp community + /// The name of the resource. + /// The ID of the resource. + /// The type of the resource. + public PSCdnPeeringPrefix(string prefix = default(string), string azureRegion = default(string), string azureService = default(string), bool? isPrimaryRegion = default(bool?), string bgpCommunity = default(string), string name = default(string), string id = default(string), string type = default(string)) + { + Prefix = prefix; + AzureRegion = azureRegion; + AzureService = azureService; + IsPrimaryRegion = isPrimaryRegion; + BgpCommunity = bgpCommunity; + Name = name; + Id = id; + Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the prefix. + /// + [JsonProperty(PropertyName = "properties.prefix")] + public string Prefix { get; set; } + + /// + /// Gets the azureRegion. + /// + [JsonProperty(PropertyName = "properties.azureRegion")] + public string AzureRegion { get; private set; } + + /// + /// Gets the Azure service + /// + [JsonProperty(PropertyName = "properties.azureService")] + public string AzureService { get; private set; } + + /// + /// Gets the flag that indicates whether or not this is the primary region + /// + [JsonProperty(PropertyName = "properties.isPrimaryRegion")] + public bool? IsPrimaryRegion { get; set; } + + /// + /// Gets the BGP Community + /// + [JsonProperty(PropertyName = "properties.bgpCommunity")] + public string BgpCommunity { get; private set; } + + /// + /// Gets the name of the resource. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the ID of the resource. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets the type of the resource. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + } +} diff --git a/src/Peering/Peering/Models/PSCdnPeeringPrefixListResult.cs b/src/Peering/Peering/Models/PSCdnPeeringPrefixListResult.cs new file mode 100644 index 000000000000..ee98447ac795 --- /dev/null +++ b/src/Peering/Peering/Models/PSCdnPeeringPrefixListResult.cs @@ -0,0 +1,62 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.PowerShell.Cmdlets.Peering.Models +{ + using Newtonsoft.Json; + using System.Collections.Generic; + + /// + /// The paginated list of [T]. + /// + public partial class PSCdnPeeringPrefixListResult + { + /// + /// Initializes a new instance of the PSCdnPeeringPrefixListResult + /// class. + /// + public PSCdnPeeringPrefixListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PSCdnPeeringPrefixListResult + /// class. + /// + /// The list of [T]. + /// The link to fetch the next page of + /// [T]. + public PSCdnPeeringPrefixListResult(IList value = default(IList), string nextLink = default(string)) + { + Value = value; + NextLink = nextLink; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the list of [T]. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + /// + /// Gets or sets the link to fetch the next page of [T]. + /// + [JsonProperty(PropertyName = "nextLink")] + public string NextLink { get; set; } + + } +} diff --git a/src/Peering/Peering/Models/PSDirectConnection.cs b/src/Peering/Peering/Models/PSDirectConnection.cs index bb082d962513..bf31ede9f02e 100644 --- a/src/Peering/Peering/Models/PSDirectConnection.cs +++ b/src/Peering/Peering/Models/PSDirectConnection.cs @@ -38,6 +38,8 @@ public PSDirectConnection() /// 'Microsoft', 'Peer' /// The flag that indicates whether /// or not the connection is used for peering service. + /// The ID used within Microsoft's + /// peering provisioning system to track the connection. /// The PeeringDB.com ID of the /// facility at which the connection has to be set up. /// The state of the connection. Possible @@ -50,12 +52,13 @@ public PSDirectConnection() /// the connection. /// The error message related to the /// connection state, if any. - public PSDirectConnection(int? bandwidthInMbps = default(int?), int? provisionedBandwidthInMbps = default(int?), string sessionAddressProvider = default(string), bool? useForPeeringService = default(bool?), int? peeringDBFacilityId = default(int?), string connectionState = default(string), PSBgpSession bgpSession = default(PSBgpSession), string connectionIdentifier = default(string), string errorMessage = default(string)) + public PSDirectConnection(int? bandwidthInMbps = default(int?), int? provisionedBandwidthInMbps = default(int?), string sessionAddressProvider = default(string), bool? useForPeeringService = default(bool?), string microsoftTrackingId = default(string), int? peeringDBFacilityId = default(int?), string connectionState = default(string), PSBgpSession bgpSession = default(PSBgpSession), string connectionIdentifier = default(string), string errorMessage = default(string)) { BandwidthInMbps = bandwidthInMbps; ProvisionedBandwidthInMbps = provisionedBandwidthInMbps; SessionAddressProvider = sessionAddressProvider; UseForPeeringService = useForPeeringService; + MicrosoftTrackingId = microsoftTrackingId; PeeringDBFacilityId = peeringDBFacilityId; ConnectionState = connectionState; BgpSession = bgpSession; @@ -95,6 +98,13 @@ public PSDirectConnection() [JsonProperty(PropertyName = "useForPeeringService")] public bool? UseForPeeringService { get; set; } + /// + /// Gets or sets the ID used within Microsoft's peering provisioning system to track the connection + /// is used for peering service. + /// + [JsonProperty(PropertyName = "MicrosoftTrackingId")] + public string MicrosoftTrackingId { get; private set; } + /// /// Gets or sets the PeeringDB.com ID of the facility at which the /// connection has to be set up. diff --git a/src/Peering/Peering/Peering.csproj b/src/Peering/Peering/Peering.csproj index cc6206fd3530..a3beb5841911 100644 --- a/src/Peering/Peering/Peering.csproj +++ b/src/Peering/Peering/Peering.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Peering/Peering/Peering/GetAzPeeringCdnPeeringPrefixCommand.cs b/src/Peering/Peering/Peering/GetAzPeeringCdnPeeringPrefixCommand.cs new file mode 100644 index 000000000000..94ef4c5344f3 --- /dev/null +++ b/src/Peering/Peering/Peering/GetAzPeeringCdnPeeringPrefixCommand.cs @@ -0,0 +1,77 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using System.Linq; +using System.Management.Automation; + +using Microsoft.Azure.Commands.Peering.Properties; +using Microsoft.Azure.Management.Peering; +using Microsoft.Azure.Management.Peering.Models; +using Microsoft.Azure.PowerShell.Cmdlets.Peering.Common; +using Microsoft.Azure.PowerShell.Cmdlets.Peering.Models; + +namespace Microsoft.Azure.PowerShell.Cmdlets.Peering.Peering +{ + /// + /// + /// The Get Az InputObject cmdlet. + /// + [Cmdlet(VerbsCommon.Get, Constants.AzPeeringCdnPeeringPrefix)] + [OutputType(typeof(PSCdnPeeringPrefix))] + public class GetAzPeeringCdnPeeringPrefixCommand : PeeringBaseCmdlet + { + /// + /// Gets or sets the PeeringLocation. + /// + [Parameter(Mandatory = true, Position = 0, HelpMessage = Constants.PeeringLocationForCdnPrefixesHelp)] + [ValidateNotNullOrEmpty] + public string PeeringLocation { get; set; } + + /// + /// + /// The base execute method. + /// + public override void Execute() + { + base.Execute(); + var cdnPeeringPrefixes = this.ListCdnPeeringPrefixes(); + this.WriteObject(cdnPeeringPrefixes, true); + } + + /// + /// The list of cdn peering prefixes. + /// + /// + /// The . + /// + /// Http Response + /// + private object ListCdnPeeringPrefixes() + { + try + { + var icList = this.CdnPeeringPrefixesOperationsClient.List(this.PeeringLocation); + if (icList != null) + { + return icList.Select(this.ToPSCdnPeeringPrefix).ToList(); + } + return icList; + } + catch (ErrorResponseException ex) + { + var error = this.GetErrorCodeAndMessageFromArmOrErm(ex); + throw new ErrorResponseException(string.Format(Resources.Error_CloudError, error.Code, error.Message)); + } + } + } +} \ No newline at end of file diff --git a/src/Peering/Peering/Properties/Resources.Designer.cs b/src/Peering/Peering/Properties/Resources.Designer.cs index e89391c02cda..109c81013b18 100644 --- a/src/Peering/Peering/Properties/Resources.Designer.cs +++ b/src/Peering/Peering/Properties/Resources.Designer.cs @@ -96,15 +96,6 @@ internal static string Error_BandwidthIncorrectFormat { } } - /// - /// Looks up a localized string similar to Bandwidth:{0} is greater than {1}.. - /// - internal static string Error_BandwidthTooHigh { - get { - return ResourceManager.GetString("Error_BandwidthTooHigh", resourceCulture); - } - } - /// /// Looks up a localized string similar to Bandwidth {0} must be greater than 0. /// diff --git a/src/Peering/Peering/Properties/Resources.resx b/src/Peering/Peering/Properties/Resources.resx index a41196e620d1..b76b13ac9190 100644 --- a/src/Peering/Peering/Properties/Resources.resx +++ b/src/Peering/Peering/Properties/Resources.resx @@ -129,9 +129,6 @@ Bandwidth {0} must have a multiple of {1}. - - Bandwidth:{0} is greater than {1}. - Bandwidth {0} must be greater than 0 diff --git a/src/Peering/Peering/help/Az.Peering.md b/src/Peering/Peering/help/Az.Peering.md index bf12feca714a..79ba9fbd976a 100644 --- a/src/Peering/Peering/help/Az.Peering.md +++ b/src/Peering/Peering/help/Az.Peering.md @@ -11,6 +11,9 @@ Locale: e-US Microsoft Peering Service allows customers and Microsoft to connect to Azure and represent their network resources as ARM objects. ## Az.Peering Cmdlets +### [Get-AzPeeringCdnPeeringPrefix](Get-AzPeeringCdnPeeringPrefix.md) +Lists all of the advertised prefixes for cdn in the specified peering location + ### [Get-AzLegacyPeering](Get-AzLegacyPeering.md) Used to Convert Legacy Peering resources to Azure Resource Management (ARM) Resources. diff --git a/src/Peering/Peering/help/Get-AzPeeringCdnPeeringPrefix.md b/src/Peering/Peering/help/Get-AzPeeringCdnPeeringPrefix.md new file mode 100644 index 000000000000..bc89eff57c83 --- /dev/null +++ b/src/Peering/Peering/help/Get-AzPeeringCdnPeeringPrefix.md @@ -0,0 +1,78 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Peering.dll-Help.xml +Module Name: Az.Peering +online version: https://docs.microsoft.com/powershell/module/az.peering/get-azpeeringcdnpeeringprefix +schema: 2.0.0 +--- + +# Get-AzPeeringCdnPeeringPrefix + +## SYNOPSIS +Lists all of the advertised prefixes for cdn in the specified peering location + +## SYNTAX + +``` +Get-AzPeeringCdnPeeringPrefix [-PeeringLocation] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Lists all of the advertised prefixes for cdn in the specified peering location + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzPeeringCdnPeeringPrefix -PeeringLocation "Seattle" +``` + +Lists all of the advertised prefixes for cdn in the specified physical peering location + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PeeringLocation +The Physical Location Different from Azure Region. +Use Get-AzPeeringLocation -Kind \ use City name as key to check if the peering location exists or Use Get-AzPeeringLocation -Kind \ to get all the peering locations to select. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +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.PowerShell.Cmdlets.Peering.Models.PSCdnPeeringPrefix + +## NOTES + +## RELATED LINKS